mirror of
https://github.com/torvalds/linux.git
synced 2026-06-03 12:03:54 +02:00
staging: greybus: remove redundant 'int' from unsigned long long
Replace 'unsigned long long int' with 'unsigned long long' as the 'int' suffix is unnecessary and not preferred by kernel coding style. Signed-off-by: Oskar Ray-Frayssinet <rayfraytech@gmail.com> Link: https://patch.msgid.link/20260304193206.4992-1-rayfraytech@gmail.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
1fc63bfed1
commit
cd002b58ec
|
|
@ -58,7 +58,7 @@ int main(int argc, char *argv[])
|
|||
goto close_fd;
|
||||
}
|
||||
|
||||
printf("UID received: 0x%llx\n", *(unsigned long long int *)(uid.uid));
|
||||
printf("UID received: 0x%llx\n", *(unsigned long long *)(uid.uid));
|
||||
|
||||
/* Get certificate */
|
||||
printf("Get IMS certificate\n");
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user