diff options
author | jmallett <jmallett@FreeBSD.org> | 2002-09-17 21:29:06 +0000 |
---|---|---|
committer | jmallett <jmallett@FreeBSD.org> | 2002-09-17 21:29:06 +0000 |
commit | 64620c0f765340361b6e1714f4b25e815271c95e (patch) | |
tree | e486dca4f9bd4c33083e88473624273b6c450c4d /usr.bin/make/targ.c | |
parent | a336071222c6757d8ada53c28f4d6743131fb475 (diff) | |
download | FreeBSD-src-64620c0f765340361b6e1714f4b25e815271c95e.zip FreeBSD-src-64620c0f765340361b6e1714f4b25e815271c95e.tar.gz |
#define<space> -> #define<tab>
Diffstat (limited to 'usr.bin/make/targ.c')
-rw-r--r-- | usr.bin/make/targ.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/make/targ.c b/usr.bin/make/targ.c index bee0810..a9bf383 100644 --- a/usr.bin/make/targ.c +++ b/usr.bin/make/targ.c @@ -92,7 +92,7 @@ static Lst allTargets; /* the list of all targets found so far */ static Lst allGNs; /* List of all the GNodes */ static Hash_Table targets; /* a hash table of same */ -#define HTSIZE 191 /* initial size of hash table */ +#define HTSIZE 191 /* initial size of hash table */ static int TargPrintOnlySrc(void *, void *); static int TargPrintName(void *, void *); @@ -487,8 +487,8 @@ Targ_PrintType (type) { int tbit; -#define PRINTBIT(attr) case CONCAT(OP_,attr): printf("." #attr " "); break -#define PRINTDBIT(attr) case CONCAT(OP_,attr): if (DEBUG(TARG)) printf("." #attr " "); break +#define PRINTBIT(attr) case CONCAT(OP_,attr): printf("." #attr " "); break +#define PRINTDBIT(attr) case CONCAT(OP_,attr): if (DEBUG(TARG)) printf("." #attr " "); break type &= ~OP_OPMASK; |