File: 06_spelling_errors.diff

package info (click to toggle)
plib 1.8.5-15
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 4,588 kB
  • sloc: cpp: 63,284; sh: 3,457; makefile: 211
file content (28 lines) | stat: -rw-r--r-- 1,092 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
Description: Fix spelling errors in code
 s/implmented/implemented, s/adress/address
Author: Tobias Frost <tobi@debian.org>
Last-Update: 2017-07-24
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- a/src/ssg/ssgSaveDXF.cxx
+++ b/src/ssg/ssgSaveDXF.cxx
@@ -102,7 +102,7 @@
     }
   }
 	else
-		ulSetError ( UL_WARNING, "ssgSaveDXF: OpenGL mode %d not implmented yet. Parts or all of the model are ignored!' for writing", (int)mode ) ;
+		ulSetError ( UL_WARNING, "ssgSaveDXF: OpenGL mode %d not implemented yet. Parts or all of the model are ignored!' for writing", (int)mode ) ;
 }
 
 
--- a/src/ssg/ssgLoadMDL.cxx
+++ b/src/ssg/ssgLoadMDL.cxx
@@ -1858,7 +1858,7 @@
             fseek(fp, -12, SEEK_CUR);
             unsigned long addr = ftell(fp);
             if(addr&1L)
-              printf("strange... found RIFF, but on an odd adress %lx\n", addr);
+              printf("strange... found RIFF, but on an odd address %lx\n", addr);
             else
               printf("found a good RIFF header at address %lx\n", addr);
             FindBGLBeginRIFF(fp);