Commit f857c70f authored by Alan Coopersmith's avatar Alan Coopersmith Committed by Ulrich Sibiller

Get rid of some extraneous ; at the end of C source lines

parent fc524ddb
...@@ -549,7 +549,7 @@ XkbChangeNames(Display *dpy, XkbDescPtr xkb, XkbNameChangesPtr changes) ...@@ -549,7 +549,7 @@ XkbChangeNames(Display *dpy, XkbDescPtr xkb, XkbNameChangesPtr changes)
which = changes->changed; which = changes->changed;
firstType = changes->first_type; firstType = changes->first_type;
nTypes = changes->num_types; nTypes = changes->num_types;
firstLvlType = changes->first_lvl;; firstLvlType = changes->first_lvl;
nLvlTypes = changes->num_lvls; nLvlTypes = changes->num_lvls;
if (which & XkbKeyTypeNamesMask) { if (which & XkbKeyTypeNamesMask) {
if (nTypes < 1) if (nTypes < 1)
......
...@@ -367,7 +367,7 @@ _XimParseExtensionList( ...@@ -367,7 +367,7 @@ _XimParseExtensionList(
if (!(n = _XimCountNumberOfExtension(data[0], (CARD8 *)&data[1]))) if (!(n = _XimCountNumberOfExtension(data[0], (CARD8 *)&data[1])))
return True; return True;
buf = (CARD8 *)&data[1];; buf = (CARD8 *)&data[1];
for (i = 0; i < n; i++) { for (i = 0; i < n; i++) {
len = *((INT16 *)(&buf[2])); len = *((INT16 *)(&buf[2]));
for (j = 0; j < num; j++) { for (j = 0; j < num; j++) {
......
...@@ -149,7 +149,7 @@ _XTextPropertyToTextList( ...@@ -149,7 +149,7 @@ _XTextPropertyToTextList(
return XConverterNotFound; return XConverterNotFound;
if (is_wide_char) { if (is_wide_char) {
buf_len = (text_prop->nitems + 1) * sizeof(wchar_t);; buf_len = (text_prop->nitems + 1) * sizeof(wchar_t);
} else { } else {
if (strcmp(to_type, XlcNUtf8String) == 0) if (strcmp(to_type, XlcNUtf8String) == 0)
buf_len = text_prop->nitems * 6 + 1; buf_len = text_prop->nitems * 6 + 1;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment