[poppler] poppler/goo: GooVector.h,1.1,1.2
Albert Astals Cid
aacid at kemper.freedesktop.org
Tue Apr 18 12:11:58 PDT 2006
Update of /cvs/poppler/poppler/goo
In directory kemper:/tmp/cvs-serv30715/goo
Modified Files:
GooVector.h
Log Message:
* goo/GooVector.h: Fix typo that was preventing build with MSVC8
Discovered by Reece Dunn <msclrhd at hotmail.com>
Index: GooVector.h
===================================================================
RCS file: /cvs/poppler/poppler/goo/GooVector.h,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- GooVector.h 12 Dec 2005 20:15:11 -0000 1.1
+++ GooVector.h 18 Apr 2006 19:11:56 -0000 1.2
@@ -22,10 +22,10 @@
storage=tmp;
}
- T* copy(T* src1,T* scr2,T* dest){
+ T* copy(T* src1,T* src2,T* dest){
T* tmp=src1;
T* d=dest;
- while(tmp!=scr2){
+ while(tmp!=src2){
*d=*tmp;
d++;tmp++;
}
More information about the poppler
mailing list