Revision: 159
http://svn.sourceforge.net/redbutton/?rev=159&view=rev
Author: skilvington
Date: 2006-12-14 06:09:32 -0800 (Thu, 14 Dec 2006)
Log Message:
-----------
print tags in decimal rather than hex in error messages
Modified Paths:
--------------
redbutton-download/trunk/assoc.c
Modified: redbutton-download/trunk/assoc.c
===================================================================
--- redbutton-download/trunk/assoc.c 2006-12-14 13:44:43 UTC (rev 158)
+++ redbutton-download/trunk/assoc.c 2006-12-14 14:09:32 UTC (rev 159)
@@ -67,7 +67,7 @@
return a->pids[i];
}
- error("Unknown PID for association tag 0x%x", stream_id);
+ error("Unknown PID for association tag %u", stream_id);
return 0;
}
@@ -83,7 +83,7 @@
return a->types[i];
}
- error("Unknown stream type for association tag 0x%x", stream_id);
+ error("Unknown stream type for association tag %u", stream_id);
return 0;
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|