1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82
|
Description: Fix spelling-error-in-binary found by lintian
Origin: vendor
Author: Alessandro Ghedini <ghedo@debian.org>
Last-Update: 2015-09-25
--- a/coregrind/m_commandline.c
+++ b/coregrind/m_commandline.c
@@ -68,7 +68,7 @@
if ( !sr_isError(fd) ) {
Int res = VG_(fstat)( sr_Res(fd), &stat_buf );
/* Ignore if not owned by the current user, or is not a regular file,
- or is world writeable (CVE-2008-4865). */
+ or is world writable (CVE-2008-4865). */
if (res == 0
&& stat_buf.uid == VG_(geteuid)()
&& VKI_S_ISREG(stat_buf.mode)
--- a/coregrind/m_gdbserver/server.c
+++ b/coregrind/m_gdbserver/server.c
@@ -256,7 +256,7 @@
" Valgrind internal host status/memory\n"
" v.translate <addr> [<traceflags>] : debug translation of <addr> with <traceflags>\n"
" (default traceflags 0b00100000 : show after instrumentation)\n"
-" An additional flag 0b100000000 allows to show gdbserver instrumentation\n");
+" An additional flag 0b100000000 allows one to show gdbserver instrumentation\n");
}
break;
case 1: /* v.set */
--- a/VEX/priv/ir_defs.c
+++ b/VEX/priv/ir_defs.c
@@ -4709,7 +4709,7 @@
if (bb->stmts_used < 0 || bb->stmts_size < 8
|| bb->stmts_used > bb->stmts_size)
/* this BB is so strange we can't even print it */
- vpanic("sanityCheckIRSB: stmts array limits wierd");
+ vpanic("sanityCheckIRSB: stmts array limits weird");
/* Ensure each temp has a plausible type. */
for (i = 0; i < n_temps; i++) {
--- a/gdbserver_tests/mchelp.stdoutB.exp
+++ b/gdbserver_tests/mchelp.stdoutB.exp
@@ -83,7 +83,7 @@
Valgrind internal host status/memory
v.translate <addr> [<traceflags>] : debug translation of <addr> with <traceflags>
(default traceflags 0b00100000 : show after instrumentation)
- An additional flag 0b100000000 allows to show gdbserver instrumentation
+ An additional flag 0b100000000 allows one to show gdbserver instrumentation
memcheck monitor commands:
xb <addr> [<len>]
prints validity bits for <len> (or 1) bytes at <addr>
--- a/coregrind/m_hashtable.c
+++ b/coregrind/m_hashtable.c
@@ -298,7 +298,7 @@
}
VG_(message)(Vg_DebugMsg,
- "nr occurences of"
+ "nr occurrences of"
" chains of len N,"
" N-plicated keys,"
" N-plicated elts\n");
--- a/coregrind/m_scheduler/scheduler.c
+++ b/coregrind/m_scheduler/scheduler.c
@@ -2212,7 +2212,7 @@
"to recompile such code, using the header files from this version of\n"
"Valgrind, and not any previous version.\n"
"\n"
- "If you see this mesage in any other circumstances, it is probably\n"
+ "If you see this message in any other circumstances, it is probably\n"
"a bug in Valgrind. In this case, please file a bug report at\n"
"\n"
" http://www.valgrind.org/support/bug_reports.html\n"
--- a/coregrind/m_xtree.c
+++ b/coregrind/m_xtree.c
@@ -961,7 +961,7 @@
FP("n%u: %llu %s\n", n_groups, top_total, header->top_node_desc);
/* Output depth 0 groups. */
- DMSG(1, "XT_massif_print outputing %u depth 0 groups\n", n_groups);
+ DMSG(1, "XT_massif_print outputting %u depth 0 groups\n", n_groups);
for (i = 0; i < n_groups; i++)
ms_output_group(fp, 0, &groups[i], sig_sz, header->sig_threshold);
|