Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
m6w6 committed May 17, 2016
1 parent df586b5 commit a015d26
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/php_pqstm.c
Original file line number Diff line number Diff line change
Expand Up @@ -448,7 +448,7 @@ static inline void php_pqstm_prepare_handler(INTERNAL_FUNCTION_PARAMETERS, zend_
obj->intern->allocated = 1;

zend_hash_add(&obj->intern->conn->intern->statements,
obj->intern->name, strlen(obj->intern->name)+1, &obj, sizeof(obj), NULL);
obj->intern->name, strlen(obj->intern->name)+1, &obj->intern, sizeof(obj->intern), NULL);
}
}
}
Expand Down

0 comments on commit a015d26

Please sign in to comment.