From 17bfa5d3e51dbf4b3383bc61e7648e6a61a0c401 Mon Sep 17 00:00:00 2001 From: Gabor Gombas Date: Wed, 25 Nov 2009 05:05:03 -0800 Subject: [PATCH] "unix" is a built-in preprocessor symbol, so it cannot be used as a variable name Signed-off-by: Love Hornquist Astrand --- kcm/main.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kcm/main.c b/kcm/main.c index 443c71bdc..2b3af2220 100644 --- a/kcm/main.c +++ b/kcm/main.c @@ -110,8 +110,8 @@ main(int argc, char **argv) heim_sipc mach; heim_sipc_launchd_mach_init(service_name, kcm_service, NULL, &mach); } else { - heim_sipc unix; - heim_sipc_service_unix(service_name, kcm_service, NULL, &unix); + heim_sipc un; + heim_sipc_service_unix(service_name, kcm_service, NULL, &un); } heim_ipc_main();