aboutsummaryrefslogtreecommitdiff
path: root/util-linux/fdisk_gpt.c
diff options
context:
space:
mode:
Diffstat (limited to 'util-linux/fdisk_gpt.c')
-rw-r--r--util-linux/fdisk_gpt.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/util-linux/fdisk_gpt.c b/util-linux/fdisk_gpt.c
index e884e3dc1..4c30f31f8 100644
--- a/util-linux/fdisk_gpt.c
+++ b/util-linux/fdisk_gpt.c
@@ -87,7 +87,7 @@ gpt_print_wide36(uint16_t *s)
}
wc[i] = 0;
if (wcstombs(buf, wc, sizeof(buf)) <= sizeof(buf)-1)
- fputs(printable_string(buf), stdout);
+ fputs_stdout(printable_string(buf));
#else
char buf[37];
int i = 0;
@@ -98,7 +98,7 @@ gpt_print_wide36(uint16_t *s)
i++;
}
buf[i] = '\0';
- fputs(buf, stdout);
+ fputs_stdout(buf);
#endif
}