]> rtime.felk.cvut.cz Git - sojka/can-utils.git/blobdiff - log2long.c
Remove compiler warning :
[sojka/can-utils.git] / log2long.c
index 05ef800b2ae9a5c7ebe540cd939a6f8fb1dfe093..6563911a7faa31f017f32ea1b73610decd128d86 100644 (file)
@@ -12,8 +12,7 @@
  * modification, are permitted provided that the following conditions
  * are met:
  * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions, the following disclaimer and
- *    the referenced file 'COPYING'.
+ *    notice, this list of conditions and the following disclaimer.
  * 2. Redistributions in binary form must reproduce the above copyright
  *    notice, this list of conditions and the following disclaimer in the
  *    documentation and/or other materials provided with the distribution.
@@ -23,8 +22,8 @@
  *
  * Alternatively, provided that this notice is retained in full, this
  * software may be distributed under the terms of the GNU General
- * Public License ("GPL") version 2 as distributed in the 'COPYING'
- * file from the main directory of the linux kernel source.
+ * Public License ("GPL") version 2, in which case the provisions of the
+ * GPL apply INSTEAD OF those given above.
  *
  * The provided data structures and external interfaces from this code
  * are not restricted to be used by modules with a GPL compatible license.
 
 int main(int argc, char **argv)
 {
-    char buf[100], timestamp[100], device[100], ascframe[100];
-    struct can_frame cf;
+       char buf[100], timestamp[100], device[100], ascframe[100];
+       struct can_frame cf;
 
-    while (fgets(buf, 99, stdin)) {
-       if (sscanf(buf, "%s %s %s", timestamp, device, ascframe) != 3)
-           return 1;
-       if (parse_canframe(ascframe, &cf))
-           return 1;
-       sprint_long_canframe(ascframe, &cf, 1); /* with ASCII output */
-       printf("%s  %s  %s\n", timestamp, device, ascframe);
-    }
+       while (fgets(buf, 99, stdin)) {
+               if (sscanf(buf, "%s %s %s", timestamp, device, ascframe) != 3)
+                       return 1;
+               if (parse_canframe(ascframe, &cf))
+                       return 1;
+               sprint_long_canframe(ascframe, &cf, 1); /* with ASCII output */
+               printf("%s  %s  %s\n", timestamp, device, ascframe);
+       }
 
-    return 0;
+       return 0;
 }