projects
/
gitmo/Mouse.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
d88885b
)
Avoid compiler's warnings
gfx [Tue, 17 Aug 2010 10:26:57 +0000 (19:26 +0900)]
xs-src/MouseTypeConstraints.xs
patch
|
blob
|
blame
|
history
diff --git
a/xs-src/MouseTypeConstraints.xs
b/xs-src/MouseTypeConstraints.xs
index
bf07619
..
5ad3389
100644
(file)
--- 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]+ */