From 68a7a6816c4f9b8251f30090ccc2c6766d9bf440 Mon Sep 17 00:00:00 2001 From: Artem Date: Sat, 23 May 2015 02:19:07 +0300 Subject: [PATCH] patch for #298 --- errors.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/errors.go b/errors.go index 1eb8f13d..062e6ff9 100644 --- a/errors.go +++ b/errors.go @@ -12,12 +12,12 @@ import ( ) const ( - ErrorTypeBind = 1 << 31 - ErrorTypeRender = 1 << 30 + ErrorTypeBind = 1 << 30 + ErrorTypeRender = 1 << 29 ErrorTypePrivate = 1 << 0 ErrorTypePublic = 1 << 1 - ErrorTypeAny = 0xffffffff + ErrorTypeAny = 0xfffffff ErrorTypeNu = 2 )