]> git.pld-linux.org Git - packages/Glide_V3-DRI.git/blob - glide-format.patch
- rediffed
[packages/Glide_V3-DRI.git] / glide-format.patch
1 --- glide3x-20010309/swlibs/fxmisc/fximg.c.orig 2013-09-23 20:58:11.901484168 +0200
2 +++ glide3x-20010309/swlibs/fxmisc/fximg.c      2013-09-23 21:05:44.205839503 +0200
3 @@ -1949,8 +1949,8 @@
4             char buf[1024], *p;
5             strcpy(buf,prefix);                 // copy and replace semicolon
6             if ((p = strchr(buf,';')) != NULL) *p = '\0';
7 -           fprintf(stderr,buf);
8 -           fprintf(stderr,"/");
9 +           fputs(buf,stderr);
10 +           fputs("/",stderr);
11         }
12         fprintf (stderr,"%s (%ldx%ld) ...", filename, info->any.width,info->any.height);
13         fflush(stderr);
14 --- glide3x-20010309/swlibs/newpci/pcilib/fxlinux.c.orig        2013-09-23 21:11:16.631291071 +0200
15 +++ glide3x-20010309/swlibs/newpci/pcilib/fxlinux.c     2013-09-23 21:15:00.308354535 +0200
16 @@ -184,7 +184,7 @@
17  static FxBool 
18  pciOutputStringLinux(const char *msg) 
19  {
20 -  printf(msg);
21 +  fputs(msg,stdout);
22    return FXTRUE;
23  }
24  
25 --- glide3x-20010309/swlibs/texus2/lib/eigen.c.orig     2000-08-03 02:27:18.000000000 +0200
26 +++ glide3x-20010309/swlibs/texus2/lib/eigen.c  2013-09-23 21:16:20.665422963 +0200
27 @@ -409,7 +409,7 @@
28      int i;
29  
30      if (title) {
31 -        fprintf(stdout, title);
32 +        fputs(title, stdout);
33      }
34  
35      if (input) {
This page took 0.132971 seconds and 3 git commands to generate.