Skip to content

Commit

Permalink
fix build (noticed by Alexey Zakhlestin)
Browse files Browse the repository at this point in the history
  • Loading branch information
tony2001 committed Jun 12, 2008
1 parent 279771d commit ca3e764
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ext/phar/zip.c
Expand Up @@ -22,7 +22,7 @@
# define PHAR_GET_32(buffer) (((((unsigned char*)(buffer))[3]) << 24) \
| ((((unsigned char*)(buffer))[2]) << 16) \
| ((((unsigned char*)(buffer))[1]) << 8) \
| (((unsigned char*)(buffer))[0])))
| (((unsigned char*)(buffer))[0]))
# define PHAR_GET_16(buffer) (((((unsigned char*)(buffer))[1]) << 8) \
| (((unsigned char*)(buffer))[0]))
# define PHAR_SET_32(buffer) PHAR_GET_32(buffer)
Expand Down

0 comments on commit ca3e764

Please sign in to comment.