diff options
author | Eric Andersen | 2004-03-15 08:29:22 +0000 |
---|---|---|
committer | Eric Andersen | 2004-03-15 08:29:22 +0000 |
commit | c7bda1ce659294d6e22c06e087f6f265983c7578 (patch) | |
tree | 4c6d2217f4d8306c59cf1096f8664e1cfd167213 /miscutils/dc.c | |
parent | 8854004b41065b3d081af7f3df13a100b0c8bfbe (diff) | |
download | busybox-c7bda1ce659294d6e22c06e087f6f265983c7578.zip busybox-c7bda1ce659294d6e22c06e087f6f265983c7578.tar.gz |
Remove trailing whitespace. Update copyright to include 2004.
Diffstat (limited to 'miscutils/dc.c')
-rw-r--r-- | miscutils/dc.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/miscutils/dc.c b/miscutils/dc.c index f574ae4..0ac658d 100644 --- a/miscutils/dc.c +++ b/miscutils/dc.c @@ -87,7 +87,7 @@ static void not(void) static void set_output_base(void) { - base=(unsigned char)pop(); + base=(unsigned char)pop(); if ((base != 10) && (base != 16)) { fprintf(stderr, "Error: base = %d is not supported.\n", base); base=10; @@ -96,7 +96,7 @@ static void set_output_base(void) static void print_base(double print) { - if (base == 16) + if (base == 16) printf("%x\n", (unsigned int)print); else printf("%g\n", print); @@ -178,7 +178,7 @@ static void stack_machine(const char *argument) } /* return pointer to next token in buffer and set *buffer to one char - * past the end of the above mentioned token + * past the end of the above mentioned token */ static char *get_token(char **buffer) { |