Well, you know me. I'd use a macro for the number value and another macro
pair to stringify it for the help string:
#define VAL 5
#define VAL_STRING STRINGIFY(VAL)
#define STRINGIFY(x) #x
... "foo " VAL_STRING " seconds" ...
Or maybe you need:
#define STRINGIFY(x) STRINGIFY_1(x)
#define STRIN
Package: hurd
Version: N/A
Severity: normal
Hi,
in libdiskfs/sync-default.c, the default sync interval is set to 5 seconds,
but opts-common.c has:
{"sync", 's', "INTERVAL", OPTION_ARG_OPTIONAL,
"If INTERVAL is supplied, sync all data not actually written to disk"
" every INTERVA