diff options
-rw-r--r-- | save-html.c | 3 | ||||
-rw-r--r-- | save-html.h | 2 |
2 files changed, 3 insertions, 2 deletions
diff --git a/save-html.c b/save-html.c index 02d131e71..695221ece 100644 --- a/save-html.c +++ b/save-html.c @@ -325,7 +325,8 @@ void export_HTML(const char *file_name, const char *photos_dir, const bool selec fclose(f); } -void export_translation(const char *file_name){ +void export_translation(const char *file_name) +{ FILE *f; struct membuffer buf = { 0 }; diff --git a/save-html.h b/save-html.h index bcf69d5f7..6d31e4fc3 100644 --- a/save-html.h +++ b/save-html.h @@ -19,7 +19,7 @@ void export_HTML(const char *file_name, const char *photos_dir, const bool selec void export_translation(const char *file_name); extern void copy_image_and_overwrite(const char *cfileName, const char *cnewName); -extern const char* get_file_name(const char *fileName); +extern const char *get_file_name(const char *fileName); #ifdef __cplusplus } #endif |