remove dangling spaces

This commit is contained in:
mrdudz
2022-04-17 16:07:20 +02:00
parent 78244351b7
commit b54fb2dfd1
4 changed files with 6 additions and 6 deletions

View File

@@ -4,7 +4,7 @@
int main (void)
{
{
/* Get the uname data */
struct utsname buf;
if (uname (&buf) != 0) {
@@ -12,7 +12,7 @@ int main (void)
return EXIT_FAILURE;
}
/* Print it */
/* Print it */
printf ("sysname: \"%s\"\n", buf.sysname);
printf ("nodename: \"%s\"\n", buf.nodename);
printf ("release: \"%s\"\n", buf.release);