summaryrefslogtreecommitdiff
path: root/lib/rpmte.c
diff options
context:
space:
mode:
authorPanu Matilainen <pmatilai@redhat.com>2011-09-01 12:55:30 +0300
committerPanu Matilainen <pmatilai@redhat.com>2011-09-01 12:55:30 +0300
commit9dcc7374320ddfd00d3c91261edc3a6e15b43c15 (patch)
treeb42b8457e2a01ded50fb0236c7fa28587048284f /lib/rpmte.c
parent535679d862092c29e00c9a6562148645acc02bae (diff)
downloadrpm-9dcc7374320ddfd00d3c91261edc3a6e15b43c15.tar.gz
rpm-9dcc7374320ddfd00d3c91261edc3a6e15b43c15.tar.bz2
rpm-9dcc7374320ddfd00d3c91261edc3a6e15b43c15.zip
Source formatting cosmetics: function blocks start on the next line
Diffstat (limited to 'lib/rpmte.c')
-rw-r--r--lib/rpmte.c9
1 files changed, 6 insertions, 3 deletions
diff --git a/lib/rpmte.c b/lib/rpmte.c
index 448a35af9..acc985f81 100644
--- a/lib/rpmte.c
+++ b/lib/rpmte.c
@@ -449,7 +449,8 @@ rpm_loff_t rpmtePkgFileSize(rpmte te)
return (te != NULL ? te->pkgFileSize : 0);
}
-unsigned int rpmteHeaderSize(rpmte te) {
+unsigned int rpmteHeaderSize(rpmte te)
+{
return (te != NULL ? te->headerSize : 0);
}
@@ -478,7 +479,8 @@ void rpmteSetTSI(rpmte te, tsortInfo tsi)
te->tsi = tsi;
}
-void rpmteSetDependsOn(rpmte te, rpmte depends) {
+void rpmteSetDependsOn(rpmte te, rpmte depends)
+{
te->depends = depends;
}
@@ -823,7 +825,8 @@ const char * rpmteTypeString(rpmte te)
}
}
-rpmfs rpmteGetFileStates(rpmte te) {
+rpmfs rpmteGetFileStates(rpmte te)
+{
return te->fs;
}