aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-lbtrm.c
diff options
context:
space:
mode:
Diffstat (limited to 'epan/dissectors/packet-lbtrm.c')
-rw-r--r--epan/dissectors/packet-lbtrm.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/dissectors/packet-lbtrm.c b/epan/dissectors/packet-lbtrm.c
index f3e1e6842d..16bbbf64e8 100644
--- a/epan/dissectors/packet-lbtrm.c
+++ b/epan/dissectors/packet-lbtrm.c
@@ -652,7 +652,7 @@ static gboolean lbtrm_tag_update_cb(void * record, char * * error_string)
if (tag->name == NULL)
{
- *error_string = g_strdup_printf("Tag name can't be empty");
+ *error_string = g_strdup("Tag name can't be empty");
return FALSE;
}
else
@@ -660,7 +660,7 @@ static gboolean lbtrm_tag_update_cb(void * record, char * * error_string)
g_strstrip(tag->name);
if (tag->name[0] == 0)
{
- *error_string = g_strdup_printf("Tag name can't be empty");
+ *error_string = g_strdup("Tag name can't be empty");
return FALSE;
}
}