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 cda9672..65447aa 100644 --- a/coreutils/hostid.c +++ b/coreutils/hostid.c @@ -19,7 +19,7 @@ int hostid_main(int argc, char ATTRIBUTE_UNUSED **argv) bb_show_usage(); } - bb_printf("%lx\n", gethostid()); + printf("%lx\n", gethostid()); - bb_fflush_stdout_and_exit(EXIT_SUCCESS); + fflush_stdout_and_exit(EXIT_SUCCESS); } |