]> granicus.if.org Git - php/commitdiff
MFH: Using int when long should be used.
authorIlia Alshanetsky <iliaa@php.net>
Sun, 22 Aug 2004 18:05:27 +0000 (18:05 +0000)
committerIlia Alshanetsky <iliaa@php.net>
Sun, 22 Aug 2004 18:05:27 +0000 (18:05 +0000)
main/streams/xp_socket.c

index a16cbe0125aae1be7459ff35c8aa0204c765feed..aa143f4ab28ef91f1145ad441ad5558f1b3b482e 100644 (file)
@@ -93,7 +93,7 @@ retry:
                        } while (err == EINTR);
                }
                estr = php_socket_strerror(err, NULL, 0);
-               php_error_docref(NULL TSRMLS_CC, E_NOTICE, "send of %ld bytes failed with errno=%d %s",
+               php_error_docref(NULL TSRMLS_CC, E_NOTICE, "send of %ld bytes failed with errno=%ld %s",
                                (long)count, err, estr);
                efree(estr);
        }