diff options
Diffstat (limited to 'coreutils/hostid.c')
-rw-r--r-- | coreutils/hostid.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/coreutils/hostid.c b/coreutils/hostid.c index cda96726a..65447aa63 100644 --- a/coreutils/hostid.c +++ b/coreutils/hostid.c | |||
@@ -19,7 +19,7 @@ int hostid_main(int argc, char ATTRIBUTE_UNUSED **argv) | |||
19 | bb_show_usage(); | 19 | bb_show_usage(); |
20 | } | 20 | } |
21 | 21 | ||
22 | bb_printf("%lx\n", gethostid()); | 22 | printf("%lx\n", gethostid()); |
23 | 23 | ||
24 | bb_fflush_stdout_and_exit(EXIT_SUCCESS); | 24 | fflush_stdout_and_exit(EXIT_SUCCESS); |
25 | } | 25 | } |