diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 2003-04-30 03:46:29 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 2003-04-30 03:46:29 +0000 |
commit | 22c459b7b94fd9b2ed9314e68b9ce4ec48bf6407 (patch) | |
tree | a319ea505d74ca28016784364028c823d709183f /sys/arch | |
parent | b20bfedb5daf0b038b3a3e5e03de6eb0aa2d8c52 (diff) |
oops. fixed endif in a wrong place
Diffstat (limited to 'sys/arch')
-rw-r--r-- | sys/arch/hppa/stand/libsa/dk.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/arch/hppa/stand/libsa/dk.c b/sys/arch/hppa/stand/libsa/dk.c index b65951d48d9..5545eaf4c8a 100644 --- a/sys/arch/hppa/stand/libsa/dk.c +++ b/sys/arch/hppa/stand/libsa/dk.c @@ -1,4 +1,4 @@ -/* $OpenBSD: dk.c,v 1.10 2003/04/29 22:38:50 mickey Exp $ */ +/* $OpenBSD: dk.c,v 1.11 2003/04/30 03:46:28 mickey Exp $ */ /* * Copyright 1996 1995 by Open Software Foundation, Inc. @@ -68,6 +68,7 @@ dkopen(struct open_file *f, ...) #ifdef DEBUG if (debug) printf ("disklabel\n"); +#endif if ((st = dk_disklabel(dp, lp)) != NULL) { #ifdef DEBUG @@ -84,7 +85,7 @@ dkopen(struct open_file *f, ...) dp->fsoff = lp->d_partitions[i].p_offset; } -#endif + #ifdef DEBUGBUG if (debug) printf ("dkopen() ret\n"); |