]> git.ipfire.org Git - thirdparty/xfsprogs-dev.git/blobdiff - db/fprint.c
apply gettext translation to more strings
[thirdparty/xfsprogs-dev.git] / db / fprint.c
index df8d607d668fc9f4fd511b474ee3f48228cd085b..1d2f29c59135f042bde4c6c0ff47fc195c636f7c 100644 (file)
@@ -24,7 +24,7 @@
 #include "fprint.h"
 #include "field.h"
 #include "inode.h"
-#include "inobt.h"
+#include "btblock.h"
 #include "bit.h"
 #include "print.h"
 #include "output.h"
@@ -95,7 +95,7 @@ fp_num(
                if (array)
                        dbprintf("%d:", i + base);
                if ((arg & FTARG_DONULL) && isnull)
-                       dbprintf("null");
+                       dbprintf(_("null"));
                else if (size > 32)
                        dbprintf(fmtstr, val);
                else
@@ -177,7 +177,7 @@ fp_uuid(
             i++, p++) {
                if (array)
                        dbprintf("%d:", i + base);
-               uuid_unparse(*p, bp);
+               platform_uuid_unparse(p, bp);
                dbprintf("%s", bp);
                if (i < count - 1)
                        dbprintf(" ");