summaryrefslogtreecommitdiff
path: root/scope.c
diff options
context:
space:
mode:
authorAlan Coopersmith <alan.coopersmith@sun.com>2009-09-29 09:41:26 -0700
committerAlan Coopersmith <alan.coopersmith@sun.com>2009-09-29 09:41:26 -0700
commitd3e165bc8f24b9fe0f6f8330cb55eed3f30e51ce (patch)
tree68cc1996df5622921feef4ad7d007315953098ab /scope.c
parentee5466fb41640654e1359c30cfed1bab7e156704 (diff)
downloadxscope-d3e165bc8f24b9fe0f6f8330cb55eed3f30e51ce.tar.gz
Fix typo in "Enabling all breakpoints" message
Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
Diffstat (limited to 'scope.c')
-rw-r--r--scope.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/scope.c b/scope.c
index 5b357f8..c93e414 100644
--- a/scope.c
+++ b/scope.c
@@ -565,7 +565,7 @@ CMDEnable (
if (argc == 1)
{
- printf ("Enablingg all breakpoints...\n");
+ printf ("Enabling all breakpoints...\n");
for (bp = breakPoints; bp; bp = bp->next)
bp->enabled = true;
}