Skip to content

Commit 987968e

Browse files
fix CUDA on windows
1 parent d8c40fb commit 987968e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/shady/emit/c/emit_c_signatures.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ String emit_type(Emitter* emitter, const Type* type, const char* center) {
160160
{ "unsigned char" , "char" },
161161
{ "unsigned short", "short" },
162162
{ "unsigned int" , "int" },
163-
{ "unsigned long" , "long" },
163+
{ "unsigned long long" , "long long" },
164164
};
165165
const char* c_explicit_int_sizes[4][2] = {
166166
{ "uint8_t" , "int8_t" },

0 commit comments

Comments
 (0)