~ubuntu-branches/ubuntu/precise/libdbd-pg-perl/precise

« back to all changes in this revision

Viewing changes to Pg.xs

  • Committer: Bazaar Package Importer
  • Author(s): Gunnar Wolf
  • Date: 2008-06-06 12:55:26 UTC
  • mfrom: (1.1.10 upstream)
  • Revision ID: james.westby@ubuntu.com-20080606125526-bz1nh7rmt7bpf12w
Tags: 2.8.0-1
* New upstream release
* Added myself as an uploader

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/*
2
 
  $Id: Pg.xs 11220 2008-05-09 02:14:39Z turnstep $
 
2
  $Id: Pg.xs 11357 2008-06-01 02:32:53Z turnstep $
3
3
 
4
4
  Copyright (c) 2000-2008 Greg Sabino Mullane and others: see the Changes file
5
5
  Portions Copyright (c) 1997-2000 Edmund Mergl
290
290
                if (attr && SvROK(attr) && SvTYPE(SvRV(attr)) == SVt_PVHV) {
291
291
                        SV **svp;
292
292
                        if ((svp = hv_fetch((HV*)SvRV(attr),"pg_async", 8, 0)) != NULL) {
293
 
                           asyncflag = SvIV(*svp);
 
293
                           asyncflag = (int)SvIV(*svp);
294
294
                        }
295
295
                }
296
296
                if (items < 4) { /* No bind arguments */