X-Git-Url: https://jxself.org/git/?p=open-adventure.git;a=blobdiff_plain;f=actions.c;h=0d8bf7f3578b9055329dd941ce3c6860a739d4ed;hp=3808f9b119b8ea836eafac3308a7774c73d5106e;hb=8207199a33c6f785172a27646336c79aaaf2f7ff;hpb=0fbd79b608bf8b481e079b98130c392a5c594776 diff --git a/actions.c b/actions.c index 3808f9b..0d8bf7f 100644 --- a/actions.c +++ b/actions.c @@ -1,8 +1,17 @@ +/* + * Actions for the duneon-running code. + * + * Copyright (c) 1977, 2005 by Will Crowther and Don Woods + * Copyright (c) 2017 by Eric S. Raymond + * SPDX-License-Identifier: BSD-2-clause + */ + #include #include #include #include "advent.h" #include "dungeon.h" +#include static int fill(verb_t, obj_t); @@ -1250,7 +1259,7 @@ static int wake(verb_t verb, obj_t obj) static int seed(verb_t verb, const char *arg) /* Set seed */ { - int seed = atoi(arg); + int32_t seed = strtol(arg, NULL, 10); speak(actions[verb].message, seed); set_seed(seed); --game.turns;