aboutsummaryrefslogtreecommitdiff
path: root/config_file.h
diff options
context:
space:
mode:
authorDavid Phillips <dbphillipsnz@gmail.com>2015-11-09 23:04:35 +1300
committerDavid Phillips <dbphillipsnz@gmail.com>2015-11-09 23:04:35 +1300
commit34d50ef2b59d12910bf26520c55283fd13bc31a1 (patch)
treeb3da3bf5e2ad87c1bea4ed44417f261d445c9c06 /config_file.h
parentcf9454885f0aa0defe52c3d70727e377a12cd2bc (diff)
downloadparamano-34d50ef2b59d12910bf26520c55283fd13bc31a1.tar.xz
Switched config file name from allocated pointers to set buffers
Diffstat (limited to 'config_file.h')
-rw-r--r--config_file.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/config_file.h b/config_file.h
index 7c9f8ab..ac23481 100644
--- a/config_file.h
+++ b/config_file.h
@@ -22,7 +22,7 @@
struct config_file
{
GKeyFile* key_file;
- gchar* file_name;
+ char file_name[4096];
};
void config_init();