diff options
author | Panu Matilainen <pmatilai@redhat.com> | 2008-07-04 15:02:30 +0300 |
---|---|---|
committer | Panu Matilainen <pmatilai@redhat.com> | 2008-07-04 16:09:47 +0300 |
commit | 104bc6a883cb59ce5f7de966fc6d8d11dc4ed247 (patch) | |
tree | 7e7239d0ebbeb9a6fa0e058b0c0f54656a5386c0 /rpmio/rpmio.c | |
parent | ebdfd2887fcb6ebccd153f78b5b775495903e6b9 (diff) | |
download | rpm-104bc6a883cb59ce5f7de966fc6d8d11dc4ed247.tar.gz rpm-104bc6a883cb59ce5f7de966fc6d8d11dc4ed247.tar.bz2 rpm-104bc6a883cb59ce5f7de966fc6d8d11dc4ed247.zip |
Make ufdClose() static, nothing outside rpmio.c needs directly
Diffstat (limited to 'rpmio/rpmio.c')
-rw-r--r-- | rpmio/rpmio.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rpmio/rpmio.c b/rpmio/rpmio.c index 6c2b0e47c..30afe737a 100644 --- a/rpmio/rpmio.c +++ b/rpmio/rpmio.c @@ -737,7 +737,7 @@ static inline int ufdSeek(void * cookie, _libio_pos_t pos, int whence) return fdSeek(cookie, pos, whence); } -int ufdClose( void * cookie) +static int ufdClose( void * cookie) { FD_t fd = c2f(cookie); |