Skip to content

Commit 0bae3f6

Browse files
committed
fix for windows compilation
1 parent 761f7fd commit 0bae3f6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

main.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4029,7 +4029,7 @@ Php::Value phpgtk_get_phpvalue(GValue *gvalue)
40294029
return g_value_get_long(gvalue);
40304030
break;
40314031
case G_TYPE_ULONG:
4032-
return g_value_get_int64(gvalue);
4032+
return (int64_t)g_value_get_int64(gvalue);
40334033
break;
40344034
case G_TYPE_UCHAR:
40354035
return g_value_get_uchar(gvalue);

0 commit comments

Comments
 (0)