Commit babb2310 authored by Douglas Bagnall's avatar Douglas Bagnall Committed by Rusty Russell

opt: incidental comment and whitespace repair

This comment occurred in a couple of places:

 /* Set an integer value, various forms.  Sets to 1 on arg == NULL. */

One instance was clearly spurious, while the other was misleading.

Another resolution to this mismatch would be to add
"if (arg == NULL){*l = 1; return NULL}" somewhere, but I suspect
it may have been left out/removed because someone thought better.
parent af7afcd4
......@@ -56,7 +56,8 @@ char *opt_set_charp(const char *arg, char **p)
return NULL;
}
/* Set an integer value, various forms. Sets to 1 on arg == NULL. */
/* Set an integer value, various forms.
FIXME: set to 1 on arg == NULL ? */
char *opt_set_intval(const char *arg, int *i)
{
long l;
......@@ -102,7 +103,7 @@ char *opt_set_ulongval(const char *arg, unsigned long *ul)
{
long int l;
char *err;
err = opt_set_longval(arg, &l);
if (err)
return err;
......@@ -153,7 +154,7 @@ void opt_show_charp(char buf[OPT_SHOW_LEN], char *const *p)
buf[2+len] = '\0';
}
/* Set an integer value, various forms. Sets to 1 on arg == NULL. */
/* Show an integer value, various forms. */
void opt_show_intval(char buf[OPT_SHOW_LEN], const int *i)
{
snprintf(buf, OPT_SHOW_LEN, "%i", *i);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment