diff options
author | H. Peter Anvin <hpa@zytor.com> | 2009-05-29 15:10:32 -0700 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2009-05-29 15:10:32 -0700 |
commit | 6dc5c514c344f88b538de28a501945f3cee541ca (patch) | |
tree | f0bf19568b10a0f41e29ff77b9f458d85c086d00 /dos | |
parent | 2e2eff4049de35291f61ff5e052f5d47d1528309 (diff) | |
download | syslinux.git-6dc5c514c344f88b538de28a501945f3cee541ca.tar.gz syslinux.git-6dc5c514c344f88b538de28a501945f3cee541ca.tar.xz syslinux.git-6dc5c514c344f88b538de28a501945f3cee541ca.zip |
Run Nindent on dos/skipatou.c
Automatically reformat dos/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 'dos')
-rw-r--r-- | dos/skipatou.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/dos/skipatou.c b/dos/skipatou.c index f71c5342..655ab565 100644 --- a/dos/skipatou.c +++ b/dos/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; } |