diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-05-21 09:48:06 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-05-21 15:30:13 +0200 |
commit | faac2327e95b5ed735ddb3f5f76a583bbe504b52 (patch) | |
tree | 65573a04ead96a4af696b47a9264044f3572af29 /tools | |
parent | d1711bb430b68e2a0ac2eb86efc998cf6a152b4a (diff) |
Clean-up C-style (void) parameter lists
Change-Id: I41da8920e33dfdd0f1483ea2d7cf67111224b441
Diffstat (limited to 'tools')
-rw-r--r-- | tools/source/zcodec/zcodec.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/source/zcodec/zcodec.cxx b/tools/source/zcodec/zcodec.cxx index ed6d8e4d5a08..3fce309306f3 100644 --- a/tools/source/zcodec/zcodec.cxx +++ b/tools/source/zcodec/zcodec.cxx @@ -335,7 +335,7 @@ void ZCodec::SetBreak( sal_uIntPtr nInToRead ) mnInToRead = nInToRead; } -sal_uIntPtr ZCodec::GetBreak( void ) +sal_uIntPtr ZCodec::GetBreak() { return ( mnInToRead + PZSTREAM->avail_in ); } |