diff options
author | peter1138 <peter1138@openttd.org> | 2019-04-13 20:18:31 +0100 |
---|---|---|
committer | Charles Pigott <charlespigott@googlemail.com> | 2019-04-13 20:35:10 +0100 |
commit | 4f052fc2a4f22dbb08c2a58e262eca99f8281000 (patch) | |
tree | e34c031858a355aedee47e3532cd28fbd80cb6b7 /src/strgen | |
parent | 410b81537cd28e133acfc423efc88627f4454676 (diff) | |
download | openttd-4f052fc2a4f22dbb08c2a58e262eca99f8281000.tar.xz |
Cleanup: Fix alignment after NULL -> nullptr change.
Diffstat (limited to 'src/strgen')
-rw-r--r-- | src/strgen/strgen.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/strgen/strgen.cpp b/src/strgen/strgen.cpp index a4c9da08e..c33e884af 100644 --- a/src/strgen/strgen.cpp +++ b/src/strgen/strgen.cpp @@ -418,7 +418,7 @@ static const OptionData _opts[] = { GETOPT_NOVAL( 't', "--todo"), GETOPT_NOVAL( 'w', "--warning"), GETOPT_NOVAL( 'h', "--help"), - GETOPT_GENERAL('h', '?', nullptr, ODF_NO_VALUE), + GETOPT_GENERAL('h', '?', nullptr, ODF_NO_VALUE), GETOPT_VALUE( 's', "--source_dir"), GETOPT_VALUE( 'd', "--dest_dir"), GETOPT_END(), |