summaryrefslogtreecommitdiff
path: root/src/properties.c
diff options
context:
space:
mode:
authorPeter Hutterer <peter.hutterer@who-t.net>2014-08-28 16:50:18 +1000
committerPeter Hutterer <peter.hutterer@who-t.net>2014-08-28 16:52:29 +1000
commit68d22ecf145bb9073121fd3a9fc1fdd0f880e48b (patch)
tree9d1e18155d02f292a7207de78688ffe5e24a19d0 /src/properties.c
parent7d0ff39519e4d3760722b914883bee276035061c (diff)
Silence two compiler warnings
Potentially uninitialized, false positive in both cases. Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
Diffstat (limited to 'src/properties.c')
-rw-r--r--src/properties.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/properties.c b/src/properties.c
index 718d054..c776e6c 100644
--- a/src/properties.c
+++ b/src/properties.c
@@ -129,6 +129,7 @@ InitTypedAtom(DeviceIntPtr dev, char *name, Atom type, int format, int nvalues,
converted = val_16;
break;
case 32:
+ default:
converted = val_32;
break;
}