Avoid breaking output string mid-sentence

Change-Id: I463f93e515ebe12ed30b1f08cca7d29a7bd535ae
Reviewed-on: https://code.wireshark.org/review/12552
Reviewed-by: Alexis La Goutte <alexis.lagoutte@gmail.com>
Petri-Dish: Alexis La Goutte <alexis.lagoutte@gmail.com>
Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org>
Reviewed-by: Michael Mann <mmann78@netscape.net>
This commit is contained in:
João Valverde 2015-12-10 17:27:30 +00:00 committed by Michael Mann
parent 2930d3105c
commit b2b9b22fe9
1 changed files with 2 additions and 2 deletions

View File

@ -221,8 +221,8 @@ plugins_scan_dir(const char *dirname)
if (cr != 0)
{
g_assert(cr == EEXIST);
fprintf(stderr, "The plugin %s, version %s\n"
"was found in multiple directories\n",
fprintf(stderr, "The plugin '%s' version %s "
"was found in multiple directories.\n",
new_plug->name, new_plug->version);
g_module_close(handle);
g_free(new_plug->name);