diff options
author | Miles Bader <miles@gnu.org> | 1996-08-14 17:33:04 +0000 |
---|---|---|
committer | Miles Bader <miles@gnu.org> | 1996-08-14 17:33:04 +0000 |
commit | 59fa64d440f60d4d62e7b587fcf2fbeb3eaf6e83 (patch) | |
tree | b02ae904410e0fd9c35fb8a29a9d0e9d3dcca1fe | |
parent | 0c7085aa47d00f20f0b9996850d4a6277634bfd8 (diff) |
Add `;' before last commands inside { } pairs.
-rwxr-xr-x | sutils/e2os.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sutils/e2os.sh b/sutils/e2os.sh index 8612cb77..3a86a2b0 100755 --- a/sutils/e2os.sh +++ b/sutils/e2os.sh @@ -83,7 +83,7 @@ trap "/bin/rm -f $SB $ERRS" 0 # Read the superblock $DD 2>"$ERRS" if="$DEVICE" of="$SB" bs=1k skip=1 count=1 \ -|| { $SED 1>&2 "s;^$DD:;$0:;" "$ERRS"; exit 2 } +|| { $SED 1>&2 "s;^$DD:;$0:;" "$ERRS"; exit 2; } # Extract a word of SZ bytes from byte offset POS in the superblock # Optional arg FMT is what format to use (x = hex, d = decimal) @@ -129,7 +129,7 @@ if test "$OS"; then # Write the superblock $DD 2>"$ERRS" if="$SB" of="$DEVICE" bs=1k seek=1 count=1 \ - || { $SED 1>&2 "s;^$DD:;$0:;" "$ERRS"; exit 6 } + || { $SED 1>&2 "s;^$DD:;$0:;" "$ERRS"; exit 6; } else # Print the os field. OS="`sbget $SB_OS`" |