diff options
author | gad <gad@FreeBSD.org> | 2004-03-29 03:03:28 +0000 |
---|---|---|
committer | gad <gad@FreeBSD.org> | 2004-03-29 03:03:28 +0000 |
commit | e706cf764f4fe3dbd460e17b11a7f243d22590ed (patch) | |
tree | 31cef518d89c8756804fef75a8f69bd1755dfeff /bin/ps | |
parent | 7360350f89afaa490502ca6a571320e0ae4653b2 (diff) | |
download | FreeBSD-src-e706cf764f4fe3dbd460e17b11a7f243d22590ed.zip FreeBSD-src-e706cf764f4fe3dbd460e17b11a7f243d22590ed.tar.gz |
Oops. Remove some ';'s in #defines added by a previous update.
Noticed by: bde
Diffstat (limited to 'bin/ps')
-rw-r--r-- | bin/ps/ps.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/ps/ps.c b/bin/ps/ps.c index 1650240..183c0fe 100644 --- a/bin/ps/ps.c +++ b/bin/ps/ps.c @@ -82,10 +82,10 @@ __FBSDID("$FreeBSD$"); #define T_SEP "," /* "Terminate-element" list separators */ #ifdef LAZY_PS -#define DEF_UREAD 0; +#define DEF_UREAD 0 #define OPT_LAZY_f "f" #else -#define DEF_UREAD 1; /* Always do the more-expensive read. */ +#define DEF_UREAD 1 /* Always do the more-expensive read. */ #define OPT_LAZY_f /* I.e., the `-f' option is not added. */ #endif |