summaryrefslogtreecommitdiff
path: root/ext/phar/stream.c
diff options
context:
space:
mode:
Diffstat (limited to 'ext/phar/stream.c')
-rw-r--r--ext/phar/stream.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/phar/stream.c b/ext/phar/stream.c
index 7e74ed60f..2f7255126 100644
--- a/ext/phar/stream.c
+++ b/ext/phar/stream.c
@@ -421,7 +421,7 @@ static int phar_stream_seek(php_stream *stream, off_t offset, int whence, off_t
case SEEK_SET :
temp = data->zero + offset;
break;
- default :
+ default:
temp = 0;
}
if (temp > data->zero + (off_t) entry->uncompressed_filesize) {