diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1996-01-11 18:19:16 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1996-01-11 18:19:16 +0000 |
commit | e809a0dc8ed2cb3abeaafef2deb98a9673e6f610 (patch) | |
tree | e2bd42a29b4f8f71f9b4c8c9810d4af412f36123 /sys | |
parent | f217953a217b97d0ebf54cffbe7d6e2472549fc7 (diff) |
from leo; Fix the same typo in all files. Yanking is soooo beautiful....
Diffstat (limited to 'sys')
-rw-r--r-- | sys/arch/atari/stand/tostools/chg_pid/chg_pid.c | 6 | ||||
-rw-r--r-- | sys/arch/atari/stand/tostools/loadbsd/loadbsd.c | 6 | ||||
-rw-r--r-- | sys/arch/atari/stand/tostools/rawwrite/rawwrite.c | 14 |
3 files changed, 13 insertions, 13 deletions
diff --git a/sys/arch/atari/stand/tostools/chg_pid/chg_pid.c b/sys/arch/atari/stand/tostools/chg_pid/chg_pid.c index f192da48032..1a226c93957 100644 --- a/sys/arch/atari/stand/tostools/chg_pid/chg_pid.c +++ b/sys/arch/atari/stand/tostools/chg_pid/chg_pid.c @@ -1,4 +1,4 @@ -/* $NetBSD: chg_pid.c,v 1.2 1996/01/07 22:06:04 leo Exp $ */ +/* $NetBSD: chg_pid.c,v 1.3 1996/01/09 09:55:06 leo Exp $ */ /* * Copyright (c) 1995 L. Weppelman @@ -95,7 +95,7 @@ int read_block PROTO((void *, int, int)); int write_block PROTO((void *, int, int)); void set_csum PROTO((char *)); -const char version[] = "$Revision: 1.1 $"; +const char version[] = "$Revision: 1.2 $"; char *Progname = NULL; /* What are we called */ int t_flag = 0; /* Test -- don't actually do it */ @@ -332,7 +332,7 @@ Usage: %s [-hVwt] [ -o <output file>] <driveno> <partno> <newid>\r \r Description of options:\r \r -\t-h What your getting right now.\r +\t-h What you're getting right now.\r \t-o Write output to both <output file> and stdout.\r \t-V Print program version.\r \t-w Wait for a keypress before exiting.\r diff --git a/sys/arch/atari/stand/tostools/loadbsd/loadbsd.c b/sys/arch/atari/stand/tostools/loadbsd/loadbsd.c index 13a72909a0d..784d0b25d05 100644 --- a/sys/arch/atari/stand/tostools/loadbsd/loadbsd.c +++ b/sys/arch/atari/stand/tostools/loadbsd/loadbsd.c @@ -1,4 +1,4 @@ -/* $NetBSD: loadbsd.c,v 1.10 1996/01/07 22:06:15 leo Exp $ */ +/* $NetBSD: loadbsd.c,v 1.11 1996/01/09 09:55:15 leo Exp $ */ /* * Copyright (c) 1995 L. Weppelman @@ -52,7 +52,7 @@ int s_flag = 0; /* St-ram only */ int t_flag = 0; /* Just test, do not execute */ int v_flag = 0; /* show version */ -const char version[] = "$Revision: 1.1 $"; +const char version[] = "$Revision: 1.2 $"; /* * Default name of kernel to boot, large enough to patch @@ -319,7 +319,7 @@ Description of options:\r \t-b Ask for root device to use.\r \t-d Enter kernel debugger.\r \t-D printout debug information while loading\r -\t-h What your getting right now.\r +\t-h What you're getting right now.\r \t-o Write output to both <output file> and stdout.\r \t-s Use only ST-compatible RAM\r \t-S Set amount of ST-compatible RAM\r diff --git a/sys/arch/atari/stand/tostools/rawwrite/rawwrite.c b/sys/arch/atari/stand/tostools/rawwrite/rawwrite.c index b34cbebf45b..ad4f092496f 100644 --- a/sys/arch/atari/stand/tostools/rawwrite/rawwrite.c +++ b/sys/arch/atari/stand/tostools/rawwrite/rawwrite.c @@ -1,4 +1,4 @@ -/* $NetBSD: rawwrite.c,v 1.2 1996/01/07 22:06:24 leo Exp $ */ +/* $NetBSD: rawwrite.c,v 1.3 1996/01/09 09:55:17 leo Exp $ */ /* * Copyright (c) 1995 Leo Weppelman. @@ -39,8 +39,8 @@ #include "libtos.h" #define SECT_SIZE 512 /* Sector size */ -#define NSECT_DD 18 /* Sectors per track 720Kb */ -#define NSECT_HD 36 /* Sectors per track 1.44Mb */ +#define NSECT_DD 18 /* Sectors per cylinder 720Kb */ +#define NSECT_HD 36 /* Sectors per cylinder 1.44Mb */ #define NTRK 80 /* Number of tracks */ static void help PROTO((void)); @@ -53,7 +53,7 @@ int v_flag = 0; /* Verbose (a dot for each track copied) */ int V_flag = 0; /* Show version */ char *progname; -const char version[] = "$Revision: 1.1 $"; +const char version[] = "$Revision: 1.2 $"; int main(argc, argv) @@ -132,8 +132,8 @@ int trk; static u_int sideno = 0; for (sideno = 0; sideno < 2; sideno++) { - if (Flopfmt(trbuf, 0, 0, NSECT_DD/2, trk, sideno, 1, 0x87654321, - 0xe5e5)) + if (Flopfmt(trbuf, 0, 0, NSECT_DD/2, trk, sideno, 1, + 0x87654321, 0xe5e5)) fatal(-1, "Format error"); if (Flopwr(buf, 0, 0, 1, trk, sideno, NSECT_DD/2)) fatal(-1, "Write error"); @@ -157,7 +157,7 @@ Usage: %s [-hvVw] [-o <log-file>] <infile>\r \r Description of options:\r \r -\t-h What your getting right now.\r +\t-h What you're getting right now.\r \t-o Write output to both <output file> and stdout.\r \t-v Show a '.' for each track written.\r \t-V Print program version.\r |