diff options
author | Pierre Joye <pajoye@php.net> | 2009-11-30 10:56:01 +0000 |
---|---|---|
committer | Pierre Joye <pajoye@php.net> | 2009-11-30 10:56:01 +0000 |
commit | 2a3ec70d100e2d721b2d14fd0a60ce90c17b51b8 (patch) | |
tree | 73cc90d10ca2d3db695d8ad6cec4cacb3a62aa41 /ext/mysqlnd/mysqlnd.c | |
parent | 8109abba8b4b037b192af4e8f2f0498d1d1b2926 (diff) | |
download | php-git-2a3ec70d100e2d721b2d14fd0a60ce90c17b51b8.tar.gz |
- void is NaN, you can't do math ops on void. Declarations go first. Fix TS build
Diffstat (limited to 'ext/mysqlnd/mysqlnd.c')
-rw-r--r-- | ext/mysqlnd/mysqlnd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/mysqlnd/mysqlnd.c b/ext/mysqlnd/mysqlnd.c index 365068d60c..3d4b02677a 100644 --- a/ext/mysqlnd/mysqlnd.c +++ b/ext/mysqlnd/mysqlnd.c @@ -2393,7 +2393,7 @@ PHPAPI void ** _mysqlnd_plugin_get_plugin_connection_data(const MYSQLND * conn, if (!conn || plugin_id >= mysqlnd_plugin_count()) { return NULL; } - DBG_RETURN((void *)conn + sizeof(MYSQLND) + plugin_id * sizeof(void *)); + DBG_RETURN((void *)(conn + sizeof(MYSQLND) + plugin_id * sizeof(void *))); } /* }}} */ |