fix Gconvert 'ignoring return value' warnings
authorDavid Mitchell <davem@iabyn.com>
Sun, 24 Nov 2013 19:58:26 +0000 (19:58 +0000)
committerDavid Mitchell <davem@iabyn.com>
Sun, 24 Nov 2013 20:24:25 +0000 (20:24 +0000)
commitcca0492ec62cab786a01ea96c47e549fe0aa8c61
tree0c636fc1dddc96e5b658254fd423ce7ed55756c2
parent04783dc7025287c5d75ab531602c7ec786a1e787
fix Gconvert 'ignoring return value' warnings

On some systems, Gconvert() is #deffed to gcvt(), and on linux,
that function has a mandatory return value, so you get lots of
'ignoring return value' warnings. So define a V_Gconvert()
macro that does Gconvert() in a void context. Ideally this macro
would be part of the original definition of Gconvert() in config.sh,
but since Gconvert() is only used in sv.c, it was easier to
to just define V_Gconvert() locally there.
sv.c