aboutsummaryrefslogtreecommitdiff
path: root/common.c
diff options
context:
space:
mode:
authorDavid Phillips <dbphillipsnz@gmail.com>2015-11-09 23:08:57 +1300
committerDavid Phillips <dbphillipsnz@gmail.com>2015-11-09 23:08:57 +1300
commit322feca9dbf0170df6dc197c5e1e1b7211f2bb62 (patch)
tree4cb98e3b6192f1ac063891ebbc5462adf7ecac46 /common.c
parent319f5675e7337505aafd6ef937d9bb73b9e14831 (diff)
downloadparamano-322feca9dbf0170df6dc197c5e1e1b7211f2bb62.tar.xz
Misc style alignment
Diffstat (limited to 'common.c')
-rw-r--r--common.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/common.c b/common.c
index 9cca098..7ab555e 100644
--- a/common.c
+++ b/common.c
@@ -58,7 +58,7 @@ int get_int_value_from_file(const char* filename)
char buffer[512];
int value = 0;
- if(!(fd = fopen(filename, "r")))
+ if (!(fd = fopen(filename, "r")))
return -1;
if (fgets(buffer, sizeof(buffer), fd))