~ubuntu-branches/ubuntu/maverick/gimp/maverick-security

« back to all changes in this revision

Viewing changes to tools/pdbgen/pdbgen.pl

  • Committer: Package Import Robot
  • Author(s): Ari Pollak
  • Date: 2010-07-08 21:31:29 UTC
  • mto: (0.4.6 sid) (1.1.23)
  • mto: This revision was merged to the branch mainline in revision 53.
  • Revision ID: package-import@ubuntu.com-20100708213129-eq09128jclwhu07x
ImportĀ upstreamĀ versionĀ 2.6.10

Show diffs side-by-side

added added

removed removed

Lines of Context:
165
165
 
166
166
            # We can't have negative lengths, but let them set a min number
167
167
            unless (exists $arg->{type}) {
168
 
                $arg->{type} = '0 < int32';
 
168
                $arg->{type} = '0 <= int32';
169
169
            }
170
170
            elsif ($arg->{type} !~ /^\s*\d+\s*</) {
171
 
                $arg->{type} = '0 < ' . $arg->{type};
 
171
                $arg->{type} = '0 <= ' . $arg->{type};
172
172
            }
173
173
 
174
174
            $arg->{void_ret} = 1 if exists $_->{void_ret};