By default, Bugzilla does not search the list of RESOLVED bugs.
You can force it to do so by putting the upper-case word ALL in front of your search query, e.g.: ALL tdelibs
We recommend searching for bugs this way, as you may discover that your bug has already been resolved and fixed in a later release. View | Details | Raw Unified | Return to bug 2159
Collapse All | Expand All

(-)a/tdeioslave/audiocd/plugins/wav/encodercda.cpp (-1 / +3 lines)
Lines 44-50 extern "C" Link Here
44
{
44
{
45
  #include <cdda_interface.h>
45
  #include <cdda_interface.h>
46
}
46
}
47
47
#ifdef __OpenBSD__
48
#undef swap16
49
#endif
48
inline int16_t swap16 (int16_t i)
50
inline int16_t swap16 (int16_t i)
49
{
51
{
50
  return (((i >> 8) & 0xFF) | ((i << 8) & 0xFF00));
52
  return (((i >> 8) & 0xFF) | ((i << 8) & 0xFF00));

Return to bug 2159