netfile: make f_type const char *

Remove lots of unnecessary (and potentially wrong) (char *) casts by
making f_type const char *.

git-svn-id: file:///home/bas/coolstream_public_svn/THIRDPARTY/applications/neutrino-experimental@1551 e54a6e83-5905-42d5-8d5c-058d10e6a962
This commit is contained in:
seife
2011-06-19 20:26:17 +00:00
parent 85270c7033
commit af58480ece
3 changed files with 13 additions and 13 deletions

View File

@@ -83,7 +83,7 @@ extern long f_tell(FILE *);
extern void f_rewind(FILE *);
extern int f_seek(FILE *, long, int);
extern int f_status(FILE *, void (*)(void*));
extern char *f_type(FILE*, char*);
extern const char *f_type(FILE*, const char*);
extern char err_txt[2048];