From e708dce6742dcc4c06aea63ae8929923ad896dbf Mon Sep 17 00:00:00 2001 From: Dmitry Stogov Date: Mon, 18 Feb 2013 12:42:56 +0400 Subject: [PATCH] Lenght is unsigned --- ZendAccelerator.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.50.1