summaryrefslogtreecommitdiff
path: root/ext/filepro/filepro.c
diff options
context:
space:
mode:
authorZeev Suraski <zeev@php.net>2001-08-11 16:39:07 +0000
committerZeev Suraski <zeev@php.net>2001-08-11 16:39:07 +0000
commitf6f6c4d7e63d2eaf4ece7aee66f46a013b29bffa (patch)
tree4013e29cc962a2f0363f61d764da46d8302d828e /ext/filepro/filepro.c
parentbafa98109cb7ac4c95a4d47e010139f4cd100bde (diff)
downloadphp-git-f6f6c4d7e63d2eaf4ece7aee66f46a013b29bffa.tar.gz
Whitespace
Diffstat (limited to 'ext/filepro/filepro.c')
-rw-r--r--ext/filepro/filepro.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/ext/filepro/filepro.c b/ext/filepro/filepro.c
index ed56136882..1b3836ed26 100644
--- a/ext/filepro/filepro.c
+++ b/ext/filepro/filepro.c
@@ -271,7 +271,7 @@ PHP_FUNCTION(filepro)
}
fclose(fp);
- FP_GLOBAL(fp_database) = estrndup(dir->value.str.val,dir->value.str.len);
+ FP_GLOBAL(fp_database) = estrndup(dir->value.str.val, dir->value.str.len);
RETVAL_TRUE;
}
@@ -367,7 +367,7 @@ PHP_FUNCTION(filepro_fieldname)
for (i = 0, lp = FP_GLOBAL(fp_fieldlist); lp; lp = lp->next, i++) {
if (i == fno->value.lval) {
- RETURN_STRING(lp->name,1);
+ RETURN_STRING(lp->name, 1);
}
}
@@ -408,7 +408,7 @@ PHP_FUNCTION(filepro_fieldtype)
for (i = 0, lp = FP_GLOBAL(fp_fieldlist); lp; lp = lp->next, i++) {
if (i == fno->value.lval) {
- RETURN_STRING(lp->format,1);
+ RETURN_STRING(lp->format, 1);
}
}
php_error(E_WARNING,
@@ -559,7 +559,7 @@ PHP_FUNCTION(filepro_retrieve)
}
readbuf[lp->width] = '\0';
fclose(fp);
- RETURN_STRING(readbuf,1);
+ RETURN_STRING(readbuf, 1);
}
/* }}} */