From: gfx Date: Tue, 17 Aug 2010 10:26:57 +0000 (+0900) Subject: Avoid compiler's warnings X-Git-Tag: 0.65~16 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=gitmo%2FMouse.git;a=commitdiff_plain;h=f3e4c7ebdc35a752e69f6031121b5cab1630b09a Avoid compiler's warnings --- diff --git a/xs-src/MouseTypeConstraints.xs b/xs-src/MouseTypeConstraints.xs index bf07619..5ad3389 100644 --- a/xs-src/MouseTypeConstraints.xs +++ b/xs-src/MouseTypeConstraints.xs @@ -125,7 +125,7 @@ S_nv_is_integer(pTHX_ NV const nv) { else { char buf[64]; /* Must fit sprintf/Gconvert of longest NV */ char* p; - Gconvert(nv, NV_DIG, 0, buf); + (void)Gconvert(nv, NV_DIG, 0, buf); p = &buf[0]; /* -?[0-9]+ */