Browse Source

JACK_MAX_FRAMES fix for C++

git-svn-id: svn+ssh://jackaudio.org/trunk/jack@482 0c269be4-1314-0410-8aa9-9f06e86f4224
tags/0.109.0
joq 22 years ago
parent
commit
95ab3ef5ef
1 changed files with 2 additions and 1 deletions
  1. +2
    -1
      jack/types.h

+ 2
- 1
jack/types.h View File

@@ -33,7 +33,8 @@ typedef uint32_t jack_nframes_t;
/**
* Maximum value that can be stored in jack_nframes_t
*/
#define JACK_MAX_FRAMES UINT32_MAX;
#define JACK_MAX_FRAMES (4294967295U) /* This should be UINT32_MAX, but
C++ has a problem with that. */

/**
* Type used to represent the value of free running


Loading…
Cancel
Save