Super miniscule optimization.

This commit is contained in:
Mikael Magnusson 2008-03-01 17:55:35 +01:00
parent e8ce4dbb8f
commit 610e80e052

View file

@ -89,7 +89,7 @@ static gpointer setup_go_func(ObParseInst *i, xmlDocPtr doc,
}
else {
o->type = ABSOLUTE;
o->abs.desktop = parse_int(doc, n) - 1;
o->abs.desktop = atoi(s) - 1;
}
g_free(s);
}