diff read_cache.c @ 3:328eadb3f37e src

Added initial example programs directory and make sure all debug/error output goes to stderr.
author richwareham
date Mon, 01 Apr 2002 18:56:28 +0000
parents 3ddf0eaece51
children 1f29402ef2ef
line wrap: on
line diff
--- a/read_cache.c	Wed Mar 20 23:41:30 2002 +0000
+++ b/read_cache.c	Mon Apr 01 18:56:28 2002 +0000
@@ -83,7 +83,7 @@
     return result;
   }
   
-  printf("DVD read cache miss! sector=%d, start=%d\n", sector, self->cache_start_sector); 
+  fprintf(stderr,"DVD read cache miss! sector=%d, start=%d\n", sector, self->cache_start_sector); 
   result = DVDReadBlocks( self->file, sector, block_count, buf);
   return result;
 }