From 1e90deb41c54043da586c35f52c835745aec97cd Mon Sep 17 00:00:00 2001 From: Vince Weaver Date: Thu, 8 Dec 2016 23:04:56 -0500 Subject: [PATCH] char2hex: whitespace cleanup --- dos33fs-utils/char2hex.c | 21 ++++++++++----------- 1 file changed, 10 insertions(+), 11 deletions(-) diff --git a/dos33fs-utils/char2hex.c b/dos33fs-utils/char2hex.c index 86abc30e..4ea00e84 100644 --- a/dos33fs-utils/char2hex.c +++ b/dos33fs-utils/char2hex.c @@ -3,15 +3,14 @@ #include "version.h" int main(int argc, char **argv) { - - int input; - - while(1) { - - input=fgetc(stdin); - if (input==EOF) break; - printf("$%02X,",input|0x80); - } - - return 0; + + int input; + + while(1) { + input=fgetc(stdin); + if (input==EOF) break; + printf("$%02X,",input|0x80); + } + + return 0; }