From 84c961ce56449438d54e4d82b99c03288df96d21 Mon Sep 17 00:00:00 2001 From: lshprung Date: Wed, 25 May 2022 15:02:22 -0700 Subject: Modified help message --- int2bin.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/int2bin.c b/int2bin.c index 0f965d7..d317f71 100644 --- a/int2bin.c +++ b/int2bin.c @@ -12,9 +12,9 @@ void print_help(char *name){ printf("Convert NUMBER(S) to binary\n\n"); printf("Options:\n"); - printf(" -b, --bits\tSpecify number of bits to print (default is 32)\n"); - printf(" -h, --help\tPrint this help message and exit\n"); - printf(" --raw \tPrint only the binary form\n"); + printf(" -b, --bits NUM \tSpecify number of bits to print (default is 32)\n"); + printf(" -h, --help \tPrint this help message and exit\n"); + printf(" --raw \tPrint only the binary form\n"); } char *to_bin(int n, int bits){ -- cgit