Cosmetics: function blocks start on a new line
authorPanu Matilainen <pmatilai@redhat.com>
Mon, 6 Jun 2011 10:09:15 +0000 (13:09 +0300)
committerPanu Matilainen <pmatilai@redhat.com>
Mon, 6 Jun 2011 10:09:15 +0000 (13:09 +0300)
lib/rpmdb.c

index b5c213c..7bb7068 100644 (file)
@@ -417,22 +417,26 @@ static int dbiPruneSet(dbiIndexSet set, void * recs, int nrecs,
 }
 
 /* Count items in index database set. */
-static unsigned int dbiIndexSetCount(dbiIndexSet set) {
+static unsigned int dbiIndexSetCount(dbiIndexSet set)
+{
     return set->count;
 }
 
 /* Return record offset of header from element in index database set. */
-static unsigned int dbiIndexRecordOffset(dbiIndexSet set, int recno) {
+static unsigned int dbiIndexRecordOffset(dbiIndexSet set, int recno)
+{
     return set->recs[recno].hdrNum;
 }
 
 /* Return file index from element in index database set. */
-static unsigned int dbiIndexRecordFileNumber(dbiIndexSet set, int recno) {
+static unsigned int dbiIndexRecordFileNumber(dbiIndexSet set, int recno)
+{
     return set->recs[recno].tagNum;
 }
 
 /* Destroy set of index database items */
-static dbiIndexSet dbiFreeIndexSet(dbiIndexSet set) {
+static dbiIndexSet dbiFreeIndexSet(dbiIndexSet set)
+{
     if (set) {
        set->recs = _free(set->recs);
        set = _free(set);