move warning to fixme. comment dprint statement

git-svn-id: file:///home/bas/coolstream_public_svn/THIRDPARTY/applications/neutrino-experimental@73 e54a6e83-5905-42d5-8d5c-058d10e6a962
This commit is contained in:
mws
2009-12-16 16:00:07 +00:00
parent 025ccf5ccc
commit 4f346c1209

View File

@@ -1109,7 +1109,7 @@ FILE *f_open(const char *filename, const char *acctype)
/* a smarter solution would be to get this info from /etc/mime.types */
ptr = strrchr(url.file , '.');
#warning what about filenames without dots?
//#FIXME warning what about filenames without dots?
if (ptr++)
{
@@ -1137,7 +1137,7 @@ int f_close(FILE *stream)
{
int i, rval;
dprintf(stderr, "f_close: stream 0x%x\n", stream);
// dprintf(stderr, "f_close: stream 0x%x\n", stream);
/* at first, lookup the stream in the stream type table and remove it */
for(i=0 ; (i<CACHEENTMAX) && (stream_type[i].stream != stream); i++){};