]> git.draconx.ca Git - rrace.git/commit
Avoid uninitialized value error in help output.
authorNick Bowler <nbowler@draconx.ca>
Thu, 10 Mar 2022 03:53:18 +0000 (22:53 -0500)
committerNick Bowler <nbowler@draconx.ca>
Thu, 10 Mar 2022 03:53:18 +0000 (22:53 -0500)
commit8e6b9fd79ca87c131d33d74d40f68df9696c7f5c
tree6bcf08885f351d8a8d28035f0cfbc2fe257af3bf
parent26fb4b6902a32be6e9f504bee44724a0dd4292f7
Avoid uninitialized value error in help output.

Technically simply passing an unitialized (indeterminate) arg value
to the help_print_option function has undefined behaviour even though
it is only unset in cases where it will not actually be used by the
function.  But it is easy to just ensure it has a well-defined value.
src/motif.c