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 | 58a8f4c440cefb99eacec94b619c714f4f5c7385 (patch) | |
tree | 42919d9d7b01b365b1ac932f9969b656b22fbefd /memdump | |
parent | b9a7c2889dd3406650aa09db5c682f56ca97af34 (diff) | |
download | syslinux-58a8f4c440cefb99eacec94b619c714f4f5c7385.tar.gz |
Run Nindent on memdump/ymsend.h
Automatically reformat memdump/ymsend.h 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/ymsend.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/memdump/ymsend.h b/memdump/ymsend.h index 9bcd5403..daed627d 100644 --- a/memdump/ymsend.h +++ b/memdump/ymsend.h @@ -4,16 +4,16 @@ #include "mystuff.h" struct serial_if { - int port; - void *pvt; - void (*read)(struct serial_if *, void *, size_t); - void (*write)(struct serial_if *, const void *, size_t); + int port; + void *pvt; + void (*read) (struct serial_if *, void *, size_t); + void (*write) (struct serial_if *, const void *, size_t); }; struct file_info { - const char *name; - size_t size; - void *pvt; + const char *name; + size_t size; + void *pvt; }; void send_ymodem(struct serial_if *, struct file_info *, |