[Redbutton-devel] SF.net SVN: redbutton: [427] redbutton-author/trunk/mhegc.c
Brought to you by:
skilvington
|
From: <ski...@us...> - 2007-09-27 13:23:48
|
Revision: 427
http://redbutton.svn.sourceforge.net/redbutton/?rev=427&view=rev
Author: skilvington
Date: 2007-09-27 06:23:43 -0700 (Thu, 27 Sep 2007)
Log Message:
-----------
ASN1 tags are unsigned
Modified Paths:
--------------
redbutton-author/trunk/mhegc.c
Modified: redbutton-author/trunk/mhegc.c
===================================================================
--- redbutton-author/trunk/mhegc.c 2007-09-26 16:33:48 UTC (rev 426)
+++ redbutton-author/trunk/mhegc.c 2007-09-27 13:23:43 UTC (rev 427)
@@ -148,7 +148,7 @@
if(show_node)
{
print_indent(indent);
- fprintf(stderr, "[%s %d]\n", asn1class_name(n->asn1class), n->asn1tag);
+ fprintf(stderr, "[%s %u]\n", asn1class_name(n->asn1class), n->asn1tag);
if(show_kids && n->children)
{
print_indent(indent);
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|