X-Git-Url: https://plomlompom.com/repos/?a=blobdiff_plain;f=src%2Fclient%2Fmisc.c;h=fcb53ecf1e6f4423c89ebeeb64cbe6a74578c568;hb=eb96a1dfe83cef7f3d1c0c73e03b915caca09db8;hp=09268b53ede3da51043910582ee16cc539e988ba;hpb=e03020342a74aef143b1ec38c18966dac64181b5;p=plomrogue diff --git a/src/client/misc.c b/src/client/misc.c index 09268b5..fcb53ec 100644 --- a/src/client/misc.c +++ b/src/client/misc.c @@ -2,14 +2,13 @@ #include "misc.h" #include /* delwin() */ -#include /* NULL */ #include /* uint8_t, uint32_t */ #include /* FILE, sprintf() */ #include /* free(), exit() */ #include /* memcpy(), strlen() */ #include /* global optarg, getopt() */ #include "../common/err_try_fgets.h" /* reset_err_try_fgets_counter() */ -#include "../common/readwrite.h" /* try_fopen(), try_fclose(), textfile_sizes(), +#include "../common/readwrite.h" /* try_fopen(), try_fclose(), textfile_width(), * try_fclose_unlink_rename(), */ #include "../common/rexit.h" /* exit_err() */ @@ -73,7 +72,7 @@ extern void load_interface_conf() /* Read keybindings and WincConf DB from interface config file. */ reset_err_try_fgets_counter(); FILE * file = try_fopen(world.path_interface, "r", f_name); - uint32_t linemax = textfile_sizes(file, NULL); + uint32_t linemax = textfile_width(file); char line[linemax + 1]; read_keybindings_from_file(line, linemax, file, &world.kb_global); read_keybindings_from_file(line, linemax, file, &world.kb_wingeom);