mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-06 12:36:58 +00:00
don't use unsigned in on Solaris, will break math expressions that are
supposed to generate negative results (related to issue #5050) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@6436 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -8,7 +8,7 @@
|
|||||||
#ifndef SOLARIS
|
#ifndef SOLARIS
|
||||||
#include <err.h>
|
#include <err.h>
|
||||||
#else
|
#else
|
||||||
#define quad_t uint64_t
|
#define quad_t int64_t
|
||||||
#endif
|
#endif
|
||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
#include <regex.h>
|
#include <regex.h>
|
||||||
|
@@ -21,7 +21,7 @@
|
|||||||
#ifndef SOLARIS
|
#ifndef SOLARIS
|
||||||
#include <err.h>
|
#include <err.h>
|
||||||
#else
|
#else
|
||||||
#define quad_t uint64_t
|
#define quad_t int64_t
|
||||||
#endif
|
#endif
|
||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
#include <regex.h>
|
#include <regex.h>
|
||||||
|
Reference in New Issue
Block a user