作図ソフト dia の改良版
リビジョン | 3a3c37d49e419fb584cf8f53b4cc511987256180 (tree) |
---|---|
日時 | 2014-10-02 07:14:41 |
作者 | Hans Breuer <hans@breu...> |
コミッター | Hans Breuer |
[warningectomy] format string is not a string literal (potentially insecure)
plug-ins.c:234:51: warning: format string is not a string literal (potentially insecure) [-Wformat-security]
@@ -231,7 +231,8 @@ dia_plugin_unload(PluginInfo *info) | ||
231 | 231 | return; |
232 | 232 | |
233 | 233 | if (!dia_plugin_can_unload(info)) { |
234 | - message(_("%s Plugin could not be unloaded"), info->name); | |
234 | + /* calling this function w/o check first is a programmer's error */ | |
235 | + g_warning ("%s plugin could not be unloaded", info->name); | |
235 | 236 | return; |
236 | 237 | } |
237 | 238 | /* perform plugin cleanup */ |