summaryrefslogtreecommitdiffstats
path: root/sbin/newfs
diff options
context:
space:
mode:
authordg <dg@FreeBSD.org>1995-09-17 09:54:05 +0000
committerdg <dg@FreeBSD.org>1995-09-17 09:54:05 +0000
commit230a85465e90dc57516a5d351d3aeb543eeaffd6 (patch)
tree4b1e5557267122042b2a5009c4895bad06716480 /sbin/newfs
parent33b2777297a430abb81ce708d1a2a6f0570497ab (diff)
downloadFreeBSD-src-230a85465e90dc57516a5d351d3aeb543eeaffd6.zip
FreeBSD-src-230a85465e90dc57516a5d351d3aeb543eeaffd6.tar.gz
Shorten a variable name.
Diffstat (limited to 'sbin/newfs')
-rw-r--r--sbin/newfs/newfs.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/sbin/newfs/newfs.c b/sbin/newfs/newfs.c
index 759bf63..2375ffb 100644
--- a/sbin/newfs/newfs.c
+++ b/sbin/newfs/newfs.c
@@ -189,7 +189,7 @@ int nrpos = NRPOS; /* # of distinguished rotational positions */
int bbsize = BBSIZE; /* boot block size */
int sbsize = SBSIZE; /* superblock size */
int mntflags = MNT_ASYNC; /* flags to be passed to mount */
-int t_or_u_flag_provided = 0; /* user has specified -t or -u */
+int t_or_u_flag = 0; /* user has specified -t or -u */
u_long memleft; /* virtual memory available */
caddr_t membase; /* start address of memory based filesystem */
char *filename;
@@ -327,12 +327,12 @@ main(argc, argv)
fatal("%s: bad file system size", optarg);
break;
case 't':
- t_or_u_flag_provided++;
+ t_or_u_flag++;
if ((ntracks = atoi(optarg)) < 0)
fatal("%s: bad total tracks", optarg);
break;
case 'u':
- t_or_u_flag_provided++;
+ t_or_u_flag++;
if ((nsectors = atoi(optarg)) < 0)
fatal("%s: bad sectors/track", optarg);
break;
@@ -502,7 +502,7 @@ main(argc, argv)
* case (4096 sectors per cylinder) is intented to disagree
* with the disklabel.
*/
- if (t_or_u_flag_provided && secpercyl != lp->d_secpercyl)
+ if (t_or_u_flag && secpercyl != lp->d_secpercyl)
fprintf(stderr, "%s (%d) %s (%lu)\n",
"Warning: calculated sectors per cylinder", secpercyl,
"disagrees with disk label", lp->d_secpercyl);
OpenPOWER on IntegriCloud