diff options
author | H. Peter Anvin <hpa@zytor.com> | 2009-05-29 15:10:36 -0700 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2009-05-29 15:10:36 -0700 |
commit | 10ca464df4ea5d5017f3d1d7366da7f3635690fa (patch) | |
tree | cbc3c2ce52b12eabf3dab1f29553f3a65338ec0b /memdump | |
parent | e92216f4ba06a333055e6dad3dfbc4586b0b993a (diff) | |
download | syslinux-10ca464df4ea5d5017f3d1d7366da7f3635690fa.tar.gz |
Run Nindent on memdump/skipatou.c
Automatically reformat memdump/skipatou.c using Nindent.
Do this for all files except HDT, gPXE and externally maintained
libraries (zlib, tinyjpeg, libpng).
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
Diffstat (limited to 'memdump')
-rw-r--r-- | memdump/skipatou.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/memdump/skipatou.c b/memdump/skipatou.c index f71c5342..655ab565 100644 --- a/memdump/skipatou.c +++ b/memdump/skipatou.c @@ -2,9 +2,9 @@ unsigned int skip_atou(const char **s) { - int i=0; + int i = 0; - while (isdigit(**s)) - i = i*10 + *((*s)++) - '0'; - return i; + while (isdigit(**s)) + i = i * 10 + *((*s)++) - '0'; + return i; } |