~ubuntu-branches/ubuntu/natty/augeas/natty

« back to all changes in this revision

Viewing changes to src/errcode.h

  • Committer: Bazaar Package Importer
  • Author(s): Raphaël Pinson
  • Date: 2011-02-24 09:32:22 UTC
  • mfrom: (1.2.15 upstream)
  • Revision ID: james.westby@ubuntu.com-20110224093222-bfd4fkm6envek6ys
Tags: 0.8.0-0ubuntu1
* New upstream release.
* Remove obsolete ruby Build-Depend.
* Build PDF docs and add them to augeas-doc.
* Build-Depend on texlive-latex-base to build PDF docs.
* Install txt doc files in augeas-doc.

Show diffs side-by-side

added added

removed removed

Lines of Context:
80
80
 */
81
81
#ifdef NDEBUG
82
82
# define ensure(cond, obj) if (0) goto error
83
 
# define ensure0(cond, obj) if (0) goto error
 
83
# define ensure0(cond, obj) if (0) return NULL
84
84
#else
85
85
# define ensure(cond, obj)                                           \
86
86
    if (!(cond)) {                                                   \