1
0
Fork 0
forked from len0rd/rockbox

Changed debug to DEBUGF and panic to panicf.

Also some linking changes.


git-svn-id: svn://svn.rockbox.org/rockbox/trunk@383 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Björn Stenberg 2002-05-02 14:05:51 +00:00
parent bca0f0f5ea
commit 697dd70ac4
10 changed files with 123 additions and 129 deletions

View file

@ -25,13 +25,11 @@
void read_file_into_buffer( char **buf, const char *filename )
{
/*char debug_message[128]; */
int i;
FILE *fp;
int count = 0;
/*sprintf( debug_message, "read_file_into_buffer( %s, %s )\n", *buf, filename );
debug( debug_message );*/
/*DEBUG( "read_file_into_buffer( %s, %s )\n", *buf, filename ); */
fp = fopen( filename, "r" );