Style nits

This commit is contained in:
twinaphex 2017-08-19 12:27:24 +02:00
parent 822e2fd0d4
commit e193f7a22a
2 changed files with 31 additions and 26 deletions

View file

@ -76,29 +76,29 @@ enum
#if defined(HAVE_LOGGER) || defined(HAVE_FILE_LOGGER)
static devoptab_t dotab_stdout = {
"stdout", // device name
0, // size of file structure
NULL, // device open
NULL, // device close
NULL, // device write
NULL, // device read
NULL, // device seek
NULL, // device fstat
NULL, // device stat
NULL, // device link
NULL, // device unlink
NULL, // device chdir
NULL, // device rename
NULL, // device mkdir
0, // dirStateSize
NULL, // device diropen_r
NULL, // device dirreset_r
NULL, // device dirnext_r
NULL, // device dirclose_r
NULL, // device statvfs_r
NULL, // device ftrunctate_r
NULL, // device fsync_r
NULL, // deviceData;
"stdout", /* device name */
0, /* size of file structure */
NULL, /* device open */
NULL, /* device close */
NULL, /* device write */
NULL, /* device read */
NULL, /* device seek */
NULL, /* device fstat */
NULL, /* device stat */
NULL, /* device link */
NULL, /* device unlink */
NULL, /* device chdir */
NULL, /* device rename */
NULL, /* device mkdir */
0, /* dirStateSize */
NULL, /* device diropen_r */
NULL, /* device dirreset_r */
NULL, /* device dirnext_r */
NULL, /* device dirclose_r */
NULL, /* device statvfs_r */
NULL, /* device ftrunctate_r */
NULL, /* device fsync_r */
NULL, /* deviceData; */
};
#endif