diff options
author | Xavier Roche <xroche@users.noreply.github.com> | 2014-05-23 21:33:43 +0000 |
---|---|---|
committer | Xavier Roche <xroche@users.noreply.github.com> | 2014-05-23 21:33:43 +0000 |
commit | cefcc0426613cc761373e785980c87c77f8a8cb5 (patch) | |
tree | e64653268bcb93fc50bf23d22e38799c5bb31adc /src/htscore.h | |
parent | 6ba50a2001bcfa1b467f69985a002fc064d8c807 (diff) |
"const correctness" cleanup
added the following default flags:
-Wformat
-Wformat-security
-Wmultichar
-Wwrite-strings
fixed several other warnings
Diffstat (limited to 'src/htscore.h')
-rw-r--r-- | src/htscore.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/htscore.h b/src/htscore.h index f082d11..93108cd 100644 --- a/src/htscore.h +++ b/src/htscore.h @@ -329,10 +329,10 @@ int fspc(httrackp * opt, FILE * fp, const char *type); char *next_token(char *p, int flag); // -char *readfile(char *fil); -char *readfile2(char *fil, LLint * size); -char *readfile_utf8(char *fil); -char *readfile_or(char *fil, char *defaultdata); +char *readfile(const char *fil); +char *readfile2(const char *fil, LLint * size); +char *readfile_utf8(const char *fil); +char *readfile_or(const char *fil, const char *defaultdata); #if 0 void check_rate(TStamp stat_timestart, int maxrate); |