diff options
Diffstat (limited to 'debianutils/which.c')
-rw-r--r-- | debianutils/which.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/debianutils/which.c b/debianutils/which.c index 748e6dc25..1558e5c6d 100644 --- a/debianutils/which.c +++ b/debianutils/which.c | |||
@@ -15,13 +15,13 @@ | |||
15 | int which_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; | 15 | int which_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; |
16 | int which_main(int argc UNUSED_PARAM, char **argv) | 16 | int which_main(int argc UNUSED_PARAM, char **argv) |
17 | { | 17 | { |
18 | USE_DESKTOP(int opt;) | 18 | IF_DESKTOP(int opt;) |
19 | int status = EXIT_SUCCESS; | 19 | int status = EXIT_SUCCESS; |
20 | char *path; | 20 | char *path; |
21 | char *p; | 21 | char *p; |
22 | 22 | ||
23 | opt_complementary = "-1"; /* at least one argument */ | 23 | opt_complementary = "-1"; /* at least one argument */ |
24 | USE_DESKTOP(opt =) getopt32(argv, "a"); | 24 | IF_DESKTOP(opt =) getopt32(argv, "a"); |
25 | argv += optind; | 25 | argv += optind; |
26 | 26 | ||
27 | /* This matches what is seen on e.g. ubuntu. | 27 | /* This matches what is seen on e.g. ubuntu. |