From: Dmitry Stogov Date: Mon, 18 Feb 2013 08:42:56 +0000 (+0400) Subject: Lenght is unsigned X-Git-Tag: php-5.5.0beta1~42^2~60 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e708dce6742dcc4c06aea63ae8929923ad896dbf;p=php Lenght is unsigned --- diff --git a/ZendAccelerator.h b/ZendAccelerator.h index 36f1b548fd..230ee86544 100644 --- a/ZendAccelerator.h +++ b/ZendAccelerator.h @@ -165,7 +165,7 @@ typedef time_t accel_time_t; typedef struct _zend_persistent_script { ulong hash_value; char *full_path; /* full real path with resolved symlinks */ - int full_path_len; + unsigned int full_path_len; zend_op_array main_op_array; HashTable function_table; HashTable class_table;