Commit 8e82c6a880dc18ce6a8f4e19dcef22b7d8ceae3e
1 parent
d5d08334
Make error messages consistent (Robert Reif)
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3891 c046a42c-6fe2-441c-8c8c-71466251a162
Showing
1 changed file
with
3 additions
and
3 deletions
hw/sun4m.c
... | ... | @@ -385,7 +385,7 @@ static void sun4m_hw_init(const struct hwdef *hwdef, int RAM_size, |
385 | 385 | for(i = 0; i < smp_cpus; i++) { |
386 | 386 | env = cpu_init(cpu_model); |
387 | 387 | if (!env) { |
388 | - fprintf(stderr, "Unable to find Sparc CPU definition\n"); | |
388 | + fprintf(stderr, "qemu: Unable to find Sparc CPU definition\n"); | |
389 | 389 | exit(1); |
390 | 390 | } |
391 | 391 | cpu_sparc_set_id(env, i); |
... | ... | @@ -554,7 +554,7 @@ static void sun4c_hw_init(const struct hwdef *hwdef, int RAM_size, |
554 | 554 | |
555 | 555 | env = cpu_init(cpu_model); |
556 | 556 | if (!env) { |
557 | - fprintf(stderr, "Unable to find Sparc CPU definition\n"); | |
557 | + fprintf(stderr, "qemu: Unable to find Sparc CPU definition\n"); | |
558 | 558 | exit(1); |
559 | 559 | } |
560 | 560 | |
... | ... | @@ -1041,7 +1041,7 @@ static void sun4d_hw_init(const struct sun4d_hwdef *hwdef, int RAM_size, |
1041 | 1041 | for (i = 0; i < smp_cpus; i++) { |
1042 | 1042 | env = cpu_init(cpu_model); |
1043 | 1043 | if (!env) { |
1044 | - fprintf(stderr, "Unable to find Sparc CPU definition\n"); | |
1044 | + fprintf(stderr, "qemu: Unable to find Sparc CPU definition\n"); | |
1045 | 1045 | exit(1); |
1046 | 1046 | } |
1047 | 1047 | cpu_sparc_set_id(env, i); | ... | ... |