* 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:
sam 2006-03-02 21:04:10 +00:00
parent 6f77a6d9ed
commit f6644fbe65
1 changed files with 1 additions and 1 deletions

View File

@ -112,6 +112,6 @@ void Init_Type() {
memset(Types, 0, bytes);
for (i = 0; (p = builtin_types[i]); i++) {
Types[i].haspointer = *p != '0';
Types[i].name = ++p;
Types[i].name = p + 1; /* Skip first character */
}
}