Changeset 933 for trunk/cli_output.c
- Timestamp:
- 03/13/10 18:28:29 (2 years ago)
- File:
-
- 1 edited
-
trunk/cli_output.c (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/cli_output.c
r836 r933 28 28 int ret; 29 29 FILE *output_type; 30 31 switch (type) 32 { 30 31 switch (type) { 33 32 case MSG_ERROR: 34 33 output_type = stderr; 35 34 break; 36 35 case MSG_BARF: 37 if (verbose < 2) return 0; 36 if (verbose < 2) 37 return 0; 38 38 case MSG_DEBUG: 39 if (verbose < 1) return 0; 39 if (verbose < 1) 40 return 0; 40 41 case MSG_INFO: 41 42 default: … … 43 44 break; 44 45 } 45 46 46 47 va_start(ap, fmt); 47 48 ret = vfprintf(output_type, fmt, ap); … … 49 50 return ret; 50 51 } 51
Note: See TracChangeset
for help on using the changeset viewer.
