Using int when long should be used.

This commit is contained in:
Ilia Alshanetsky 2004-08-22 18:05:24 +00:00
parent d6dd2c26fa
commit c84bd49fb5

View 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);
}