summaryrefslogtreecommitdiffstats
path: root/kexi/3rdparty/kexisql3/src/printf.c
diff options
context:
space:
mode:
Diffstat (limited to 'kexi/3rdparty/kexisql3/src/printf.c')
-rw-r--r--kexi/3rdparty/kexisql3/src/printf.c8
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;