Revert incorrect usage of le_t in name_u64

This commit is contained in:
Nekotekina 2019-07-09 12:07:58 +03:00
parent 6fba3dd90c
commit d1db6a6827
8 changed files with 8 additions and 8 deletions

View file

@ -13,7 +13,7 @@ struct sys_cond_attribute_t
union union
{ {
le_t<u64> name_u64; u64 name_u64;
char name[sizeof(u64)]; char name[sizeof(u64)];
}; };
}; };

View file

@ -59,7 +59,7 @@ struct sys_event_queue_attribute_t
union union
{ {
le_t<u64> name_u64; u64 name_u64;
char name[sizeof(u64)]; char name[sizeof(u64)];
}; };
}; };

View file

@ -26,7 +26,7 @@ struct sys_event_flag_attribute_t
union union
{ {
le_t<u64> name_u64; u64 name_u64;
char name[sizeof(u64)]; char name[sizeof(u64)];
}; };
}; };

View file

@ -10,7 +10,7 @@ struct sys_lwcond_attribute_t
{ {
union union
{ {
le_t<u64> name_u64; u64 name_u64;
char name[sizeof(u64)]; char name[sizeof(u64)];
}; };
}; };

View file

@ -11,7 +11,7 @@ struct sys_lwmutex_attribute_t
union union
{ {
le_t<u64> name_u64; u64 name_u64;
char name[sizeof(u64)]; char name[sizeof(u64)];
}; };
}; };

View file

@ -16,7 +16,7 @@ struct sys_mutex_attribute_t
union union
{ {
le_t<u64> name_u64; u64 name_u64;
char name[sizeof(u64)]; char name[sizeof(u64)];
}; };
}; };

View file

@ -14,7 +14,7 @@ struct sys_rwlock_attribute_t
union union
{ {
le_t<u64> name_u64; u64 name_u64;
char name[sizeof(u64)]; char name[sizeof(u64)];
}; };
}; };

View file

@ -14,7 +14,7 @@ struct sys_semaphore_attribute_t
union union
{ {
le_t<u64> name_u64; u64 name_u64;
char name[sizeof(u64)]; char name[sizeof(u64)];
}; };
}; };