diff options
Diffstat (limited to 'util-linux')
-rw-r--r-- | util-linux/fdisk_gpt.c | 4 | ||||
-rw-r--r-- | util-linux/rev.c | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/util-linux/fdisk_gpt.c b/util-linux/fdisk_gpt.c index e884e3d..4c30f31 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 } diff --git a/util-linux/rev.c b/util-linux/rev.c index ede4fbc..d439b4d 100644 --- a/util-linux/rev.c +++ b/util-linux/rev.c @@ -108,7 +108,7 @@ int rev_main(int argc UNUSED_PARAM, char **argv) #else strrev(buf, strlen(buf)); #endif - fputs(buf, stdout); + fputs_stdout(buf); } fclose(fp); } while (*argv); |