Browse Source

Using int when long should be used.

PHP-5.1
Ilia Alshanetsky 22 years ago
parent
commit
c84bd49fb5
  1. 2
      main/streams/xp_socket.c

2
main/streams/xp_socket.c

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

Loading…
Cancel
Save