Changeset 600 for branches/1.3/utils.c
- Timestamp:
- 07/05/2009 07:36:11 AM (4 years ago)
- Location:
- branches/1.3
- Files:
-
- 2 modified
Legend:
- Unmodified
- Added
- Removed
-
branches/1.3
- Property svn:ignore
-
old new 32 32 run-tests.php 33 33 structinfo.m4 34 autom4te.cache 34 35 tags 35 36
-
- Property svn:mergeinfo changed
/trunk merged: 347-352,355
- Property svn:ignore
-
branches/1.3/utils.c
r593 r600 732 732 int xc_vtrace(const char *fmt, va_list args) /* {{{ */ 733 733 { 734 vfprintf(stderr, fmt, args); 735 return 0; 734 return vfprintf(stderr, fmt, args); 736 735 } 737 736 /* }}} */ … … 739 738 { 740 739 va_list args; 740 int ret; 741 741 742 742 va_start(args, fmt); 743 xc_vtrace(fmt, args);743 ret = xc_vtrace(fmt, args); 744 744 va_end(args); 745 return 0;746 } 747 /* }}} */ 745 return ret; 746 } 747 /* }}} */

