Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Dorota Czaplejewicz
gtk
Commits
df619a13
Commit
df619a13
authored
Sep 17, 2008
by
Christian Persch
Browse files
Bug 552668 – format not a string literal and no format arguments in
gtkimmodule svn path=/trunk/; revision=21416
parent
7b533d04
Changes
2
Hide whitespace changes
Inline
Side-by-side
ChangeLog
View file @
df619a13
2008-09-17 Christian Persch <chpe@gnome.org>
Bug 552668 – format not a string literal and no format arguments in
gtkimmodule
* gtk/gtkimmodule.c: (gtk_im_module_load): Use %s with g_warning here.
2008-09-17 Christian Persch <chpe@gnome.org>
Bug 552667 – gtkimage containing gicon leaks memory
...
...
gtk/gtkimmodule.c
View file @
df619a13
...
...
@@ -101,7 +101,7 @@ gtk_im_module_load (GTypeModule *module)
im_module
->
library
=
g_module_open
(
im_module
->
path
,
G_MODULE_BIND_LAZY
|
G_MODULE_BIND_LOCAL
);
if
(
!
im_module
->
library
)
{
g_warning
(
g_module_error
());
g_warning
(
"%s"
,
g_module_error
());
return
FALSE
;
}
...
...
@@ -115,7 +115,7 @@ gtk_im_module_load (GTypeModule *module)
!
g_module_symbol
(
im_module
->
library
,
"im_module_create"
,
(
gpointer
*
)
&
im_module
->
create
))
{
g_warning
(
g_module_error
());
g_warning
(
"%s"
,
g_module_error
());
g_module_close
(
im_module
->
library
);
return
FALSE
;
...
...
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