value: init flag mask more correctly
authorTim-Philipp Müller <tim@centricular.com>
Sun, 4 May 2014 13:52:01 +0000 (14:52 +0100)
committerTim-Philipp Müller <tim@centricular.com>
Sun, 4 May 2014 13:52:01 +0000 (14:52 +0100)
gst/gstvalue.c

index 26ff861..30f9595 100644 (file)
@@ -2530,7 +2530,7 @@ gst_value_deserialize_int_helper (gint64 * to, const gchar * s,
 {
   gboolean ret = FALSE;
   gchar *end;
-  guint64 mask = -1;
+  guint64 mask = ~0;
 
   errno = 0;
   *to = g_ascii_strtoull (s, &end, 0);