Skip to content
Snippets Groups Projects
Commit 0ddbdf44 authored by Jonathan Wilkes's avatar Jonathan Wilkes
Browse files

fix #286: change t_int to int in gui_do_vmess

parent 5fd7e5a1
No related branches found
No related tags found
No related merge requests found
...@@ -840,7 +840,7 @@ void gui_do_vmess(const char *sel, char *fmt, int end, va_list ap) ...@@ -840,7 +840,7 @@ void gui_do_vmess(const char *sel, char *fmt, int end, va_list ap)
{ {
case 'f': sys_vgui("%g", va_arg(ap, double)); break; case 'f': sys_vgui("%g", va_arg(ap, double)); break;
case 's': escape_double_quotes(va_arg(ap, const char *)); break; case 's': escape_double_quotes(va_arg(ap, const char *)); break;
case 'i': sys_vgui("%d", va_arg(ap, t_int)); break; case 'i': sys_vgui("%d", va_arg(ap, int)); break;
case 'x': sys_vgui("\"" X_SPECIFIER "\"", case 'x': sys_vgui("\"" X_SPECIFIER "\"",
va_arg(ap, long unsigned int)); va_arg(ap, long unsigned int));
break; break;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment