diff options
author | Panu Matilainen <pmatilai@redhat.com> | 2011-09-01 12:55:30 +0300 |
---|---|---|
committer | Panu Matilainen <pmatilai@redhat.com> | 2011-09-01 12:55:30 +0300 |
commit | 9dcc7374320ddfd00d3c91261edc3a6e15b43c15 (patch) | |
tree | b42b8457e2a01ded50fb0236c7fa28587048284f /lib/rpmte.c | |
parent | 535679d862092c29e00c9a6562148645acc02bae (diff) | |
download | rpm-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.c | 9 |
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; } |