diff options
author | Vito Caputo <vcaputo@pengaru.com> | 2020-10-08 01:29:12 -0700 |
---|---|---|
committer | Vito Caputo <vcaputo@pengaru.com> | 2020-10-08 01:29:12 -0700 |
commit | a031634bd64c7f30c4ace5ca06a5a47600b42f47 (patch) | |
tree | 919e13ed1ba2e6443fe952288085576322748405 /src/rmd_specsfile.c | |
parent | bd53002a2bf51d48992613601719d180fed09975 (diff) |
*: more cosmetic formatting cleanups
Making things a bit more consistent
Diffstat (limited to 'src/rmd_specsfile.c')
-rw-r--r-- | src/rmd_specsfile.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/rmd_specsfile.c b/src/rmd_specsfile.c index 50542a8..7676bc9 100644 --- a/src/rmd_specsfile.c +++ b/src/rmd_specsfile.c @@ -33,8 +33,8 @@ #include <stdio.h> -int rmdWriteSpecsFile(ProgData *pdata) { - +int rmdWriteSpecsFile(ProgData *pdata) +{ FILE *fp; fp=fopen(pdata->cache_data->specsfile,"wb"); @@ -63,7 +63,8 @@ int rmdWriteSpecsFile(ProgData *pdata) { return 0; } -int rmdReadSpecsFile(ProgData *pdata) { +int rmdReadSpecsFile(ProgData *pdata) +{ char Cached_Version[256]; FILE *fp; |