From 2a89dc560d781ee981864ce6df2c70049ff7596b Mon Sep 17 00:00:00 2001
From: Paddy Smith <padski@gmail.com>
Date: Wed, 2 Feb 2011 20:26:01 +0000
Subject: [PATCH] use defined() around __linux__ in #elif
---
avahi-daemon/setproctitle.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/avahi-daemon/setproctitle.c b/avahi-daemon/setproctitle.c
index aef3555..e6f0941 100644
|
a
|
b
|
|
| 85 | 85 | va_end(ap); |
| 86 | 86 | |
| 87 | 87 | setproctitle("-%s", t); |
| 88 | | #elif __linux__ |
| | 88 | #elif defined(__linux__) |
| 89 | 89 | size_t l; |
| 90 | 90 | va_list ap; |
| 91 | 91 | |