diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2014-06-16 20:35:33 +0200 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2014-06-16 20:35:33 +0200 |
commit | 7dcb0fa50128ab924cb4fce1b2898eb1a9ab8ee8 (patch) | |
tree | 4c8df7d35038a6d4e7e1a6c6c10253c59545054f /src/FileInput.cpp | |
parent | 8af4aca43ad1939c578f24e998d2d2ff58e7cc2c (diff) | |
download | ODR-AudioEnc-7dcb0fa50128ab924cb4fce1b2898eb1a9ab8ee8.tar.gz ODR-AudioEnc-7dcb0fa50128ab924cb4fce1b2898eb1a9ab8ee8.tar.bz2 ODR-AudioEnc-7dcb0fa50128ab924cb4fce1b2898eb1a9ab8ee8.zip |
Indentation and code formatting
Diffstat (limited to 'src/FileInput.cpp')
-rw-r--r-- | src/FileInput.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/FileInput.cpp b/src/FileInput.cpp index b116e80..2b05ec3 100644 --- a/src/FileInput.cpp +++ b/src/FileInput.cpp @@ -98,9 +98,9 @@ ssize_t FileInput::read(uint8_t* buf, size_t length) int FileInput::eof() { - int eof=feof(m_in_fh); - clearerr(m_in_fh); - return eof; + int eof = feof(m_in_fh); + clearerr(m_in_fh); + return eof; } |