Make main.c less stupid

This commit is contained in:
Drew DeVault 2015-08-05 22:56:45 -04:00
parent a74268dfab
commit e7a8868514

View File

@ -6,7 +6,7 @@
struct sway_config *config; struct sway_config *config;
bool load_config() { void load_config() {
// TODO: Allow use of more config file locations // TODO: Allow use of more config file locations
const char *name = "/.i3/config"; const char *name = "/.i3/config";
const char *home = getenv("HOME"); const char *home = getenv("HOME");
@ -22,13 +22,10 @@ bool load_config() {
free(temp); free(temp);
config = read_config(f); config = read_config(f);
fclose(f); fclose(f);
return true;
} }
int main(int argc, char **argv) { int main(int argc, char **argv) {
if (!load_config()) { load_config();
return 0;
}
return 0; return 0;
static struct wlc_interface interface = { }; static struct wlc_interface interface = { };