~ubuntu-branches/debian/squeeze/libgpg-error/squeeze

« back to all changes in this revision

Viewing changes to src/mkerrcodes.c

  • Committer: Bazaar Package Importer
  • Author(s): Jose Carlos Garcia Sogo
  • Date: 2006-09-24 16:33:03 UTC
  • mfrom: (1.2.1 upstream) (2.1.3 edgy)
  • Revision ID: james.westby@ubuntu.com-20060924163303-2secsa8lts3hhhct
Tags: 1.4-1
* New upstream version.
* Bumped Standards-Version to 3.7.2. No changes needed.
* Use {binary:Version} field in libgpg-error-dev dependecy field. (Closes: #384376)
* Fix typo in upstream URL at debian/copyright file (Closes: #387735)
* debian/patches: Disable m4_macros and 10_relibtoolize patches.
  Upstream uses now a quite current copy of gettext.
* Update FSF address in debian/copyright file.

Show diffs side-by-side

added added

removed removed

Lines of Context:
47
47
"\n";
48
48
 
49
49
int
50
 
main (int argc, char *argv)
 
50
main (int argc, char **argv)
51
51
{
52
52
  int sorted;
53
53
  int i;
73
73
      
74
74
  for (i = 0; i < sizeof (err_table) / sizeof (err_table[0]); i++)
75
75
    printf ("%i\t%s\n", err_table[i].err, err_table[i].err_sym);
 
76
 
 
77
  return 0;
76
78
}