Skip to content

Commit

Permalink
fix for windows compilation
Browse files Browse the repository at this point in the history
  • Loading branch information
scorninpc committed Feb 12, 2023
1 parent 761f7fd commit 0bae3f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4029,7 +4029,7 @@ Php::Value phpgtk_get_phpvalue(GValue *gvalue)
return g_value_get_long(gvalue);
break;
case G_TYPE_ULONG:
return g_value_get_int64(gvalue);
return (int64_t)g_value_get_int64(gvalue);
break;
case G_TYPE_UCHAR:
return g_value_get_uchar(gvalue);
Expand Down

0 comments on commit 0bae3f6

Please sign in to comment.