diff options
author | Adam Dickmeiss <dickmeiss@php.net> | 2002-04-19 20:03:47 +0000 |
---|---|---|
committer | Adam Dickmeiss <dickmeiss@php.net> | 2002-04-19 20:03:47 +0000 |
commit | 6ad3b2bf43ae55ce49140184aef8cce5d5dc2b7a (patch) | |
tree | 73abd63cfde52ff25be4c2fc08c388c30d1d27b6 /ext/yaz/php_yaz.c | |
parent | 4acbbcf5a9a2e6ab5106d06e7c56ea52a380ed50 (diff) | |
download | php-git-6ad3b2bf43ae55ce49140184aef8cce5d5dc2b7a.tar.gz |
fix warning
Diffstat (limited to 'ext/yaz/php_yaz.c')
-rw-r--r-- | ext/yaz/php_yaz.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ext/yaz/php_yaz.c b/ext/yaz/php_yaz.c index 09a4835b98..ba7e0464be 100644 --- a/ext/yaz/php_yaz.c +++ b/ext/yaz/php_yaz.c @@ -798,7 +798,8 @@ static int send_search (Yaz_Association t) static int send_sort_present (Yaz_Association t) { if (!send_sort(t)) - send_present (t); + return send_present (t); + return 1; } static int send_present (Yaz_Association t) |