diff options
author | Michele Calgaro <[email protected]> | 2020-01-30 20:17:52 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2020-01-30 23:52:57 +0900 |
commit | 6f5e73f8e45830a61c66a08525fb86f0d8371e18 (patch) | |
tree | 5d9a1d7b1e2829597fe3ea8bf1915f5f4d49e571 /kexi/3rdparty/kexisql3/src/printf.c | |
parent | b027c0d2d9a6bf45e80ece20725216222f4ac7d2 (diff) | |
download | koffice-6f5e73f8e45830a61c66a08525fb86f0d8371e18.tar.gz koffice-6f5e73f8e45830a61c66a08525fb86f0d8371e18.zip |
Removed explicit usage of the 'register' keyword.
Signed-off-by: Michele Calgaro <[email protected]>
(cherry picked from commit e5dc5b5be9900b9c8b2d7988216d56156c806b20)
Diffstat (limited to 'kexi/3rdparty/kexisql3/src/printf.c')
-rw-r--r-- | kexi/3rdparty/kexisql3/src/printf.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/kexi/3rdparty/kexisql3/src/printf.c b/kexi/3rdparty/kexisql3/src/printf.c index a669eb8d..a980e79c 100644 --- a/kexi/3rdparty/kexisql3/src/printf.c +++ b/kexi/3rdparty/kexisql3/src/printf.c @@ -397,8 +397,8 @@ static int vxprintf( } bufpt = &buf[etBUFSIZE-1]; { - register const char *cset; /* Use registers for speed */ - register int base; + const char *cset; /* Use registers for speed */ + int base; cset = &aDigits[infop->charset]; base = infop->base; do{ /* Convert to ascii */ @@ -659,7 +659,7 @@ static int vxprintf( ** the output. */ if( !flag_leftjustify ){ - register int nspace; + int nspace; nspace = width-length; if( nspace>0 ){ count += nspace; @@ -675,7 +675,7 @@ static int vxprintf( count += length; } if( flag_leftjustify ){ - register int nspace; + int nspace; nspace = width-length; if( nspace>0 ){ count += nspace; |