advance while parsing a hex input in obxprop

This commit is contained in:
Dana Jansens 2010-05-11 23:29:18 -04:00
parent 6e799ad40d
commit 013df404a8

View file

@ -36,6 +36,7 @@ gint parse_hex(gchar *s) {
result *= 16;
result += add;
++s;
}
return result;
}