* src/type.c: Replaced useless ++p with p+1.
git-svn-id: svn://svn.zoy.org/elk/trunk@260 55e467fa-43c5-0310-a8a2-de718669efc6
This commit is contained in:
parent
6f77a6d9ed
commit
f6644fbe65
|
@ -112,6 +112,6 @@ void Init_Type() {
|
||||||
memset(Types, 0, bytes);
|
memset(Types, 0, bytes);
|
||||||
for (i = 0; (p = builtin_types[i]); i++) {
|
for (i = 0; (p = builtin_types[i]); i++) {
|
||||||
Types[i].haspointer = *p != '0';
|
Types[i].haspointer = *p != '0';
|
||||||
Types[i].name = ++p;
|
Types[i].name = p + 1; /* Skip first character */
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue