Skip to content

Commit 35f30b3

Browse files
committed
Fix implementation-defined conversion warning
1 parent e575ab5 commit 35f30b3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ext/phar/stream.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -372,7 +372,7 @@ static int phar_stream_close(php_stream *stream, int close_handle) /* {{{ */
372372
static ssize_t phar_stream_read(php_stream *stream, char *buf, size_t count) /* {{{ */
373373
{
374374
phar_entry_data *data = (phar_entry_data *)stream->abstract;
375-
size_t got;
375+
ssize_t got;
376376
phar_entry_info *entry;
377377

378378
if (data->internal_file->link) {

0 commit comments

Comments
 (0)