Changeset ceead58 in rtems
- Timestamp:
- 10/10/01 18:42:07 (22 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- d9b0b866
- Parents:
- 083b72a
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/exec/libcsupport/src/printk.c
r083b72a rceead58 45 45 BSP_output_char('-'); 46 46 num = -num; 47 maxwidth--;47 if (maxwidth) maxwidth--; 48 48 } 49 49 -
c/src/lib/ChangeLog
r083b72a rceead58 1 2001-10-10 Joel Sherrill <joel@OARcorp.com> 2 3 * libc/printk.c (printNum): Properly handle a maxwidth of 0 4 as reported by Nick Hennenfent <NICK.HENNENFENT@ROCHE.COM>. 5 1 6 2001-09-28 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 7 -
c/src/lib/libc/printk.c
r083b72a rceead58 45 45 BSP_output_char('-'); 46 46 num = -num; 47 maxwidth--;47 if (maxwidth) maxwidth--; 48 48 } 49 49 -
cpukit/libcsupport/src/printk.c
r083b72a rceead58 45 45 BSP_output_char('-'); 46 46 num = -num; 47 maxwidth--;47 if (maxwidth) maxwidth--; 48 48 } 49 49
Note: See TracChangeset
for help on using the changeset viewer.