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:
@@ -41,6 +41,9 @@ struct _oproperty_info_;
|
|||||||
|
|
||||||
struct compound_type {
|
struct compound_type {
|
||||||
struct field_pair {
|
struct field_pair {
|
||||||
|
#if __GNUC__ > 2
|
||||||
|
const
|
||||||
|
#endif
|
||||||
char *name; // name of entry in message
|
char *name; // name of entry in message
|
||||||
type_code type; // type_code of entry in message
|
type_code type; // type_code of entry in message
|
||||||
};
|
};
|
||||||
@@ -49,13 +52,13 @@ struct compound_type {
|
|||||||
|
|
||||||
struct property_info {
|
struct property_info {
|
||||||
#if __GNUC__ > 2
|
#if __GNUC__ > 2
|
||||||
const
|
const
|
||||||
#endif
|
#endif
|
||||||
char *name;
|
char *name;
|
||||||
uint32 commands[10];
|
uint32 commands[10];
|
||||||
uint32 specifiers[10];
|
uint32 specifiers[10];
|
||||||
#if __GNUC__ > 2
|
#if __GNUC__ > 2
|
||||||
const
|
const
|
||||||
#endif
|
#endif
|
||||||
char *usage;
|
char *usage;
|
||||||
uint32 extra_data;
|
uint32 extra_data;
|
||||||
|
|||||||
Reference in New Issue
Block a user