diff options
author | Michele Calgaro <[email protected]> | 2020-01-30 20:17:52 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2020-01-30 20:17:52 +0900 |
commit | e5dc5b5be9900b9c8b2d7988216d56156c806b20 (patch) | |
tree | d0209902442729f7856d2a8efdca565373fb5c43 /kexi/3rdparty/kexisql3/src/func.c | |
parent | 9d008f46e1b540304fdb7fb0270e23b7c3f43a68 (diff) | |
download | koffice-e5dc5b5be9900b9c8b2d7988216d56156c806b20.tar.gz koffice-e5dc5b5be9900b9c8b2d7988216d56156c806b20.zip |
Removed explicit usage of the 'register' keyword.
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'kexi/3rdparty/kexisql3/src/func.c')
-rw-r--r-- | kexi/3rdparty/kexisql3/src/func.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kexi/3rdparty/kexisql3/src/func.c b/kexi/3rdparty/kexisql3/src/func.c index 9917f4e2..3f78c59d 100644 --- a/kexi/3rdparty/kexisql3/src/func.c +++ b/kexi/3rdparty/kexisql3/src/func.c @@ -363,7 +363,7 @@ static int patternCompare( const struct compareInfo *pInfo, /* Information about how to do the compare */ const int esc /* The escape character */ ){ - register int c; + int c; int invert; int seen; int c2; |