ensure safe_qbuf gets initialized buffer as 1st arg

This commit is contained in:
nethack.allison
2003-05-10 15:25:33 +00:00
parent 8f66986300
commit f32ad24709
2 changed files with 3 additions and 3 deletions

View File

@@ -2564,7 +2564,7 @@ do_break_wand(obj)
Strcpy(the_wand, yname(obj));
Sprintf(confirm, "Are you really sure you want to break %s?",
safe_qbuf(confirm, sizeof("Are you really sure you want to break ?"),
safe_qbuf("", sizeof("Are you really sure you want to break ?"),
the_wand, ysimple_name(obj), "the wand"));
if (yn(confirm) == 'n' ) return 0;

View File

@@ -539,7 +539,7 @@ menu_pickup:
if (!all_of_a_type) {
char qbuf[BUFSZ];
Sprintf(qbuf, "Pick up %s?",
safe_qbuf(qbuf, sizeof("Pick up ?"), doname(obj),
safe_qbuf("", sizeof("Pick up ?"), doname(obj),
an(simple_typename(obj->otyp)), something));
switch ((obj->quan < 2L) ? ynaq(qbuf) : ynNaq(qbuf)) {
case 'q': goto end_query; /* out 2 levels */
@@ -1479,7 +1479,7 @@ lootcont:
if (Is_container(cobj)) {
Sprintf(qbuf, "There is %s here, loot it?",
safe_qbuf(qbuf, sizeof("There is here, loot it?"),
safe_qbuf("", sizeof("There is here, loot it?"),
doname(cobj), an(simple_typename(cobj->otyp)),
"a container"));
c = ynq(qbuf);