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
This commit is contained in:
Rene Gollent 2009-02-01 21:30:25 +00:00
parent 85298c49be
commit 4c9838d0e4

View File

@ -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;