stop using __u32 etc. uint32_t is there for a reason

This commit is contained in:
Denis Vlasenko
2006-12-31 18:57:37 +00:00
parent 806116b234
commit 98ee06d3d4
16 changed files with 160 additions and 177 deletions

View File

@ -88,9 +88,9 @@ int rtnl_rtntype_a2n(int *id, char *arg)
return 0;
}
int get_rt_realms(__u32 *realms, char *arg)
int get_rt_realms(uint32_t *realms, char *arg)
{
__u32 realm = 0;
uint32_t realm = 0;
char *p = strchr(arg, '/');
*realms = 0;