]> git.pld-linux.org Git - packages/alsa-tools.git/blob - alsa-tools-build.patch
5caf5f82b1725248704848ec38c12f682e29a0d2
[packages/alsa-tools.git] / alsa-tools-build.patch
1 diff -ur alsa-tools-1.0.27.org/ld10k1/src/ld10k1.c alsa-tools-1.0.27/ld10k1/src/ld10k1.c
2 --- alsa-tools-1.0.27.org/ld10k1/src/ld10k1.c   2013-04-11 13:43:07.000000000 +0200
3 +++ alsa-tools-1.0.27/ld10k1/src/ld10k1.c       2013-04-14 21:18:25.553846590 +0200
4 @@ -62,7 +62,7 @@
5                          localtime(&tp));
6                 fprintf(out, "%s %s", timestr, label);
7         } else 
8 -               fprintf(out, label);
9 +               fprintf(out, "%s", label);
10         vfprintf(out, fmt, va);
11         fprintf(out, "\n");
12         fflush(out);
13 diff -ur alsa-tools-1.0.27.org/ld10k1/src/lo10k1.c alsa-tools-1.0.27/ld10k1/src/lo10k1.c
14 --- alsa-tools-1.0.27.org/ld10k1/src/lo10k1.c   2013-04-11 13:43:07.000000000 +0200
15 +++ alsa-tools-1.0.27/ld10k1/src/lo10k1.c       2013-04-14 21:12:42.462505232 +0200
16 @@ -868,7 +868,7 @@
17  
18  void debug_print(char *str)
19  {
20 -       printf(str);
21 +       printf("%s", str);
22  }
23  
24  static int debug(int deb)
This page took 0.02649 seconds and 2 git commands to generate.