~registry/codeblocks/trunk

« back to all changes in this revision

Viewing changes to src/sdk/scripting/sqstdlib/sqstdstring.cpp

  • Committer: jenslody
  • Date: 2009-06-20 14:19:07 UTC
  • Revision ID: svn-v4:98b59c6a-2706-0410-b7d6-d2fa1a1880c9:trunk:5671
* more changes to debian build system, should be now lintian-clean, except for some guessed spelling errors; changed name and install-dir of mimetype-icons; fixed a typo

Show diffs side-by-side

added added

removed removed

Lines of Context:
87
87
                else {
88
88
                        n++;
89
89
                        if( nparam > sq_gettop(v) )
90
 
                                return sq_throwerror(v,_SC("not enough paramters for the given format string"));
 
90
                                return sq_throwerror(v,_SC("not enough parameters for the given format string"));
91
91
                        n = validate_format(v,fmt,format,n,w);
92
92
                        if(n < 0) return -1;
93
93
                        SQInteger addlen = 0;