Skip to content

Unsigned macros using std uint_x are misspelled! #3

@babaliaris

Description

@babaliaris

The following:

#define VAMP_UINT8 u_int8_t
#define VAMP_UINT16 u_int16_t
#define VAMP_UINT32 u_int32_t
#define VAMP_UINT64 u_int64_t

must change to:

    #define VAMP_UINT8 uint8_t
    #define VAMP_UINT16 uint16_t
    #define VAMP_UINT32 uint32_t
    #define VAMP_UINT64 uint64_t

Metadata

Metadata

Assignees

Labels

bugSomething isn't working

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions