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


Origin commit data
------------------
Branch: ni/coolstream
Commit: af58480ece
Author: Stefan Seyfried <seife@tuxbox-git.slipkontur.de>
Date: 2011-06-19 (Sun, 19 Jun 2011)



------------------
This commit was generated by Migit
This commit is contained in:
Stefan Seyfried
2011-06-19 20:26:17 +00:00
parent a9ce155708
commit 4c269b6179
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];