Skip to content
Snippets Groups Projects
Commit 464c3dca authored by Kevin P. Fleming's avatar Kevin P. Fleming
Browse files

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
parent d996db1a
No related branches found
No related tags found
No related merge requests found
......@@ -8,7 +8,7 @@
#ifndef SOLARIS
#include <err.h>
#else
#define quad_t uint64_t
#define quad_t int64_t
#endif
#include <errno.h>
#include <regex.h>
......
......@@ -21,7 +21,7 @@
#ifndef SOLARIS
#include <err.h>
#else
#define quad_t uint64_t
#define quad_t int64_t
#endif
#include <errno.h>
#include <regex.h>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment