From 4c9838d0e45bb11f24400ef0ebc0cfcc0431541b Mon Sep 17 00:00:00 2001 From: Rene Gollent Date: Sun, 1 Feb 2009 21:30:25 +0000 Subject: [PATCH] Remove trailing spaces and add one more needed const. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@29116 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- headers/os/app/PropertyInfo.h | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/headers/os/app/PropertyInfo.h b/headers/os/app/PropertyInfo.h index b25f7f61d3..780903c511 100644 --- a/headers/os/app/PropertyInfo.h +++ b/headers/os/app/PropertyInfo.h @@ -41,6 +41,9 @@ struct _oproperty_info_; struct compound_type { struct field_pair { +#if __GNUC__ > 2 + const +#endif char *name; // name of entry in message type_code type; // type_code of entry in message }; @@ -49,13 +52,13 @@ struct compound_type { struct property_info { #if __GNUC__ > 2 - const + const #endif char *name; uint32 commands[10]; uint32 specifiers[10]; #if __GNUC__ > 2 - const + const #endif char *usage; uint32 extra_data;