mirror of
https://github.com/YosysHQ/yosys.git
synced 2026-08-22 14:17:27 +02:00
Change intptr_t to uintptr_t in hashlib.h
This commit is contained in:
+1
-1
@@ -147,7 +147,7 @@ struct hash_ptr_ops {
|
||||
return a == b;
|
||||
}
|
||||
static inline unsigned int hash(const void *a) {
|
||||
return (intptr_t)a;
|
||||
return (uintptr_t)a;
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user