Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Xiph.Org
Vorbis tools
Commits
d4e67b3d
Commit
d4e67b3d
authored
Dec 26, 2001
by
Segher Boessenkool
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
don't pass non-constant strings as format string
svn path=/trunk/vorbis-tools/; revision=2909
parent
fe0ced0d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
ogg123/callbacks.c
ogg123/callbacks.c
+3
-3
No files found.
ogg123/callbacks.c
View file @
d4e67b3d
...
...
@@ -11,7 +11,7 @@
* *
********************************************************************
last mod: $Id: callbacks.c,v 1.
2
2001/12/
19 02:52:53 volsung
Exp $
last mod: $Id: callbacks.c,v 1.
3
2001/12/
26 14:22:26 segher
Exp $
********************************************************************/
...
...
@@ -244,7 +244,7 @@ void status_error_action (buf_t *buf, void *arg)
{
status_message_arg_t
*
myarg
=
(
status_message_arg_t
*
)
arg
;
status_error
(
myarg
->
message
);
status_error
(
"%s"
,
myarg
->
message
);
free
(
myarg
->
message
);
free
(
myarg
);
...
...
@@ -255,7 +255,7 @@ void status_message_action (buf_t *buf, void *arg)
{
status_message_arg_t
*
myarg
=
(
status_message_arg_t
*
)
arg
;
status_message
(
myarg
->
verbosity
,
myarg
->
message
);
status_message
(
myarg
->
verbosity
,
"%s"
,
myarg
->
message
);
free
(
myarg
->
message
);
free
(
myarg
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a 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