aboutsummaryrefslogtreecommitdiff
path: root/src/cmd/db/pcs.c
diff options
context:
space:
mode:
authorPetter Rodhelind <petter.rodhelind@gmail.com>2020-01-14 11:41:08 +0100
committerPetter Rodhelind <petter.rodhelind@gmail.com>2020-01-14 11:41:08 +0100
commit02d7aa8915f9c3a3288dab01f321eb94ba219e3b (patch)
treef053238978479e408a2b83571443e132f30586ab /src/cmd/db/pcs.c
parentc0c9d8f883dfd3a7f5a74499d91bb95884b15873 (diff)
parent3d1382b98a502d0c34d5ba2c462396acc515016e (diff)
downloadplan9port-02d7aa8915f9c3a3288dab01f321eb94ba219e3b.tar.gz
plan9port-02d7aa8915f9c3a3288dab01f321eb94ba219e3b.tar.bz2
plan9port-02d7aa8915f9c3a3288dab01f321eb94ba219e3b.zip
Merge remote-tracking branch 'upstream/master'
Diffstat (limited to 'src/cmd/db/pcs.c')
-rw-r--r--src/cmd/db/pcs.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/cmd/db/pcs.c b/src/cmd/db/pcs.c
index b876f50a..681819da 100644
--- a/src/cmd/db/pcs.c
+++ b/src/cmd/db/pcs.c
@@ -29,7 +29,7 @@ subpcs(int modif)
switch (modif) {
/* delete breakpoint */
- case 'd':
+ case 'd':
case 'D':
if ((bk=scanbkpt(dot)) == 0)
error("no breakpoint set");
@@ -37,7 +37,7 @@ subpcs(int modif)
return;
/* set breakpoint */
- case 'b':
+ case 'b':
case 'B':
if (bk=scanbkpt(dot))
bk->flag=BKPTCLR;
@@ -80,7 +80,7 @@ subpcs(int modif)
return;
/* run program */
- case 'r':
+ case 'r':
case 'R':
endpcs();
setup();
@@ -88,7 +88,7 @@ subpcs(int modif)
break;
/* single step */
- case 's':
+ case 's':
if (pid == 0) {
setup();
loopcnt--;
@@ -119,8 +119,8 @@ subpcs(int modif)
loopcnt = 0;
break;
/* continue with optional note */
- case 'c':
- case 'C':
+ case 'c':
+ case 'C':
if (pid==0)
error(NOPCS);
runmode=CONTIN;