~ubuntu-branches/ubuntu/wily/dee/wily-proposed

« back to all changes in this revision

Viewing changes to src/dee-transaction.c

  • Committer: Package Import Robot
  • Author(s): CI Train Bot, Ken VanDine
  • Date: 2015-03-04 21:43:44 UTC
  • mfrom: (1.1.38)
  • Revision ID: package-import@ubuntu.com-20150304214344-kkxk52jflgpcjew3
Tags: 1.2.7+15.04.20150304-0ubuntu1
[ Ken VanDine ]
Fix new warnings with GCC 5, patch thanks to Matthias Klose (LP:
#1428299)

Show diffs side-by-side

added added

removed removed

Lines of Context:
233
233
  g_slice_free (JournalIter, jiter);
234
234
}
235
235
 
236
 
#define journal_iter_is_removed(jiter) jiter->change_type == CHANGE_TYPE_REMOVE
 
236
#define journal_iter_is_removed(jiter) (jiter->change_type == CHANGE_TYPE_REMOVE)
237
237
 
238
238
static JournalSegment*
239
239
journal_segment_new_before (DeeModelIter *iter, DeeTransaction *txn)