~ubuntu-branches/ubuntu/trusty/psqlodbc/trusty-proposed

« back to all changes in this revision

Viewing changes to misc.c

  • Committer: Package Import Robot
  • Author(s): Christoph Berg
  • Date: 2013-05-31 22:29:52 UTC
  • mfrom: (13.1.1 experimental)
  • Revision ID: package-import@ubuntu.com-20130531222952-hg1ou0c3xa2jdix7
Tags: 1:09.01.0200-2
* Versioned Breaks: libiodbc2 (<< 3.52.7-3~), it is multiarch-aware now.
  (Fixes co-installability with KDE, Closes: #703047.)
* Add build-time test and autopkgtest using isql; autopkgtest will also test
  using iodbctest. (Needs pg-common >= 144 for pg_virtualenv.)

Show diffs side-by-side

added added

removed removed

Lines of Context:
249
249
char *
250
250
my_trim(char *s)
251
251
{
252
 
        size_t          i;
 
252
        int             i;
253
253
 
254
254
        for (i = strlen(s) - 1; i >= 0; i--)
255
255
        {