From f2cbb03a378aa48f2e08b64877d54da3fab4ea6a Mon Sep 17 00:00:00 2001 From: Denys Vlasenko Date: Fri, 23 Oct 2009 03:16:08 +0200 Subject: *: optimize most of isXXXXX() macros text data bss dec hex filename 824164 453 6812 831429 cafc5 busybox_old 823730 453 6812 830995 cae13 busybox_unstripped Signed-off-by: Denys Vlasenko --- util-linux/ipcrm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'util-linux/ipcrm.c') diff --git a/util-linux/ipcrm.c b/util-linux/ipcrm.c index 5dcda859a..5e18c2846 100644 --- a/util-linux/ipcrm.c +++ b/util-linux/ipcrm.c @@ -122,7 +122,7 @@ int ipcrm_main(int argc, char **argv) while ((c = getopt(argc, argv, "q:m:s:Q:M:S:h?")) != -1) { int result; int id = 0; - int iskey = (isupper)(c); + int iskey = isupper(c); /* needed to delete semaphores */ union semun arg; -- cgit v1.2.3