mirror of
https://github.com/mariadb-corporation/mariadb-connector-python.git
synced 2025-08-14 08:56:00 +00:00
Build fixes
This commit is contained in:
@ -335,7 +335,7 @@ uint8_t MrdbParser_parse(MrdbParser *p, uint8_t is_batch, char *errmsg, size_t e
|
||||
#define MAX_POOL_SIZE 64
|
||||
|
||||
#define TIMEDIFF(a,b)\
|
||||
((a).tv_sec * 1E09 + (a).tv_nsec) - ((b).tv_sec * 1E09 + (b).tv_nsec)
|
||||
((a).tv_sec * (uint64_t)1E09 + (a).tv_nsec) - ((b).tv_sec * (uint64_t)1E09 + (b).tv_nsec)
|
||||
|
||||
/* Helper macros */
|
||||
|
||||
|
Reference in New Issue
Block a user