Bug #64
closedkern_ktr.c warning patch
0%
Description
Hi,
convert unneccessary vprintf to printf
Files
Updated by corecode almost 19 years ago
On 18.01.2006, at 17:09, Alexey Slynko wrote:
Hi,
convert unneccessary vprintf to printf
Index: /usr/src1/sys/kern/kern_ktr.c ===================================================================
RCS file: /mnt/share/dragonfly-cvs/src/sys/kern/kern_ktr.c,v
retrieving revision 1.12
diffu -r1.12 kern_ktr.c/usr/src1/sys/kern/kern_ktr.c 12 Dec 2005 08:15:02 -0000 1.12
--
+++ /usr/src1/sys/kern/kern_ktr.c 18 Jan 2006 14:25:20 -0000@ -438,6 +438,7
@
struct ktr_entry *entry;
int cpu;+ entry = NULL;
cpu = mycpu->gd_cpuid;
if (ktr_buf[cpu]) {
crit_enter();@ -471,7 +472,7
@
if (ktr_verbose > 1) {
printf("%s.%d\t", entry->ktr_file, entry->ktr_line);
}
- vprintf(info->kf_format, ptr);
+ printf(info->kf_format, ptr);
did you actually try this?
cheers
simon
Updated by pavalos about 16 years ago
I'm not seeing how this is supposed to work, and haven't heard back from the
originator for 2+ years.