* EOAdaptors/SQLiteAdaptor/SQLite3Adaptor.m

get rid of stray ; to make the loop work


git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gdl2/trunk@36296 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
buzzdee 2013-03-07 13:11:34 +00:00
parent 3b50ec44d4
commit ad922a4d60
2 changed files with 3 additions and 1 deletions

View file

@ -7,6 +7,8 @@
ivar_getTypeEncoding returns const char *
* EOAdaptors/PostgreSQLAdaptor/LoginPanel/PostgreSQLLoginPanel.h
class conforms to NSTextFieldDelegate
* EOAdaptors/SQLiteAdaptor/SQLite3Adaptor.m
get rid of stray ; to make the loop work
2013-03-02: Sebastian Reitenbach <sebastia@l00-bugdead-prods.de>
* Apps/EOModelEditor/EOMEDocument.m

View file

@ -63,7 +63,7 @@ static NSString *types[][2] =
NSString *external[sizeof(types)/sizeof(types[0])];
NSString *internal[sizeof(types)/sizeof(types[0])];
for (i = 0; i < sizeof(types)/sizeof(types[0]); i++);
for (i = 0; i < sizeof(types)/sizeof(types[0]); i++)
{
external[i] = types[i][0];
internal[i] = types[i][1];