Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Rishabh Gupta
purr-data
Commits
0ddbdf44
Commit
0ddbdf44
authored
Mar 16, 2017
by
Jonathan Wilkes
Browse files
fix
#286
: change t_int to int in gui_do_vmess
parent
5fd7e5a1
Changes
1
Hide whitespace changes
Inline
Side-by-side
pd/src/s_inter.c
View file @
0ddbdf44
...
...
@@ -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
'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
"
\"
"
,
va_arg
(
ap
,
long
unsigned
int
));
break
;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment