From 3644a0f83a346426213322bf16a588bf2c4e9a95 Mon Sep 17 00:00:00 2001 From: Benjamin Marzinski Date: Fri, 29 Apr 2005 21:52:46 +0000 Subject: [PATCH] changed client_path and sever_path from 'char *' to 'const char *' to stop compiler warning messages. --- lib/libdm-event.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/libdm-event.h b/lib/libdm-event.h index 053c51c..ee72b00 100644 --- a/lib/libdm-event.h +++ b/lib/libdm-event.h @@ -56,8 +56,8 @@ struct daemon_message { struct fifos { int client; int server; - char *client_path; - char *server_path; + const char *client_path; + const char *server_path; }; /* Event type definitions. */ -- 2.43.5