Skip to content

Commit

Permalink
ulong -> unsigned long
Browse files Browse the repository at this point in the history
  • Loading branch information
m6w6 committed Feb 7, 2020
1 parent 13b06e9 commit cc619cb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/php_pqconn.c
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ static void php_pq_callback_hash_dtor(zval *p)
}

/*
static void php_pqconn_del_eventhandler(php_pqconn_object_t *obj, const char *type_str, size_t type_len, ulong id)
static void php_pqconn_del_eventhandler(php_pqconn_object_t *obj, const char *type_str, size_t type_len, unsigned long id)
{
zval **evhs;
Expand Down
2 changes: 1 addition & 1 deletion src/php_pqconn.h
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ typedef struct php_pqconn_object {

typedef struct php_pqconn_resource_factory_data {
char *dsn;
uint32_t flags;
unsigned long flags;
} php_pqconn_resource_factory_data_t;

extern php_resource_factory_ops_t *php_pqconn_get_resource_factory_ops(void);
Expand Down

0 comments on commit cc619cb

Please sign in to comment.