lib: removing casts where possible
commitd1ce71e9cc4b056908410389c6b5d7c620c94758
authorChris Frey <cdfrey@foursquare.net>
Wed, 25 Jul 2012 03:02:04 +0000 (24 23:02 -0400)
committerChris Frey <cdfrey@foursquare.net>
Wed, 25 Jul 2012 05:15:45 +0000 (25 01:15 -0400)
treecd2aa7d2cb1f2e555493aa0e280695b33229bbc7
parent9c22e2fbdad9e6f09dc3b7aaaaaf327f2246a304
lib: removing casts where possible

I prefer to use exact variables if possible, instead of casts, in order
to clear compiler warnings.  I hope this still works on Win32.

Reserve casting for actual conversions, such as the cast from float
to time_t in Message2Time(), instead of only hiding compiler warnings.

A compiler warning fixed only with a cast is a compiler warning that
may be incorrectly hidden later.
src/m_jvmdebug.cc
src/time.cc