diff options
author | Andrey Hristov <andrey@php.net> | 2008-03-10 09:18:43 +0000 |
---|---|---|
committer | Andrey Hristov <andrey@php.net> | 2008-03-10 09:18:43 +0000 |
commit | a27e0c88189a3d73420547210f0603d8bca54166 (patch) | |
tree | 237575f213267843e8261db9fd44fe9b6bd9d0cb /ext/mysqli | |
parent | 08b5500f4b8cbc71497f38e4550ff3ac1f3674de (diff) | |
download | php-git-a27e0c88189a3d73420547210f0603d8bca54166.tar.gz |
- Fix a warning in php_mysql.c
- Fixed #44371 Extension compile failed
Diffstat (limited to 'ext/mysqli')
-rw-r--r-- | ext/mysqli/php_mysqli_structs.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/mysqli/php_mysqli_structs.h b/ext/mysqli/php_mysqli_structs.h index 2563efb5d5..05c87be574 100644 --- a/ext/mysqli/php_mysqli_structs.h +++ b/ext/mysqli/php_mysqli_structs.h @@ -38,11 +38,11 @@ #ifdef HAVE_MYSQLND #include "ext/mysqlnd/mysqlnd.h" -#include "ext/mysqli/mysqli_mysqlnd.h" +#include "mysqli_mysqlnd.h" #else #include <mysql.h> #include <errmsg.h> -#include "ext/mysqli/mysqli_libmysql.h" +#include "mysqli_libmysql.h" #endif #include "php_mysqli.h" |