diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2017-04-29 18:08:07 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2017-04-29 18:08:07 -0400 |
commit | facf34bd2ffc16eb2a5e770d9be3d8010b4add42 (patch) | |
tree | edabd39358d60e55489c0195a461323937431cba /printf.h | |
parent | 068205d5e5186ab3fb0403d129572bc90a65bd23 (diff) | |
download | bfs-facf34bd2ffc16eb2a5e770d9be3d8010b4add42.tar.xz |
Don't parse the mount table until it's needed
Diffstat (limited to 'printf.h')
-rw-r--r-- | printf.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -39,7 +39,7 @@ struct bfs_printf { * The command line. * @return The parsed printf command, or NULL on failure. */ -struct bfs_printf *parse_bfs_printf(const char *format, const struct cmdline *cmdline); +struct bfs_printf *parse_bfs_printf(const char *format, struct cmdline *cmdline); /** * Evaluate a parsed format string. |