summaryrefslogtreecommitdiff
path: root/setvalues.c
diff options
context:
space:
mode:
authorAlan Coopersmith <alan.coopersmith@oracle.com>2015-05-09 11:19:33 -0700
committerAlan Coopersmith <alan.coopersmith@oracle.com>2015-05-09 11:19:33 -0700
commitaf90a105ec97c6d856d2e8a80e8822c3e192d1e9 (patch)
tree88e8a1428621f6dd10eb7c37370723d2e6a1b7e8 /setvalues.c
parent9ffefd5b3d38e9ed2b5ed59bc50e8a7da761fb77 (diff)
Replace remaining sprintf calls with snprintf
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Diffstat (limited to 'setvalues.c')
-rw-r--r--setvalues.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/setvalues.c b/setvalues.c
index a28bcf9..09896d1 100644
--- a/setvalues.c
+++ b/setvalues.c
@@ -64,13 +64,14 @@ PrintSetValuesError(Event *event)
sv_event->info[i].widgets.num_widgets);
if (node == NULL) {
- sprintf(buf, "Editres Internal Error: Unable to FindNode.\n");
+ snprintf(buf, sizeof(buf),
+ "Editres Internal Error: Unable to FindNode.\n");
AddString(&errors, buf);
continue;
}
- sprintf(buf, "%s(0x%lx) - %s\n", node->name, node->id,
- sv_event->info[i].message);
+ snprintf(buf, sizeof(buf), "%s(0x%lx) - %s\n", node->name, node->id,
+ sv_event->info[i].message);
AddString(&errors, buf);
}
return(errors);