#0 __GI_____strtol_l_internal (nptr=0x0, endptr=0x0, base=10, group=, loc=0x7f1387dab060 <_nl_global_locale>) at ../stdlib/strtol_l.c:298 [Error: strtol_l.c was not found in source tree] #1 0x000055f262501740 in atoi (__nptr=) at /usr/include/stdlib.h:280 [Error: stdlib.h was not found in source tree] #2 load_config_file (conf=0x55f2628a1560) at main.c:61 56: if (!fp) 57: return; 58: 59: if (fgets(buf, sizeof(buf), fp)) { 60: num = g_strsplit(buf, "." , 3); 61: if ((atoi(num[1]) >= 8) && (atoi(num[2]) >= 0)) { 62: fgets(buf, sizeof(buf), fp); 63: conf->width = atoi(buf); 64: fgets(buf, sizeof(buf), fp); 65: conf->height = atoi(buf); 66: fgets(buf, sizeof(buf), fp); #3 0x000055f2625011d4 in main (argc=2, argv=0x7ffe84d63fc8) at main.c:314 309: conf->fontname = g_strdup("Monospace 12"); 310: conf->wordwrap = FALSE; 311: conf->linenumbers = FALSE; 312: conf->autoindent = FALSE; 313: 314: load_config_file(conf); 315: 316: gtk_window_set_default_size( 317: GTK_WINDOW(pub->mw->window), conf->width, conf->height); 318: set_text_font_by_name(pub->mw->view, conf->fontname); 319: