miniexpect.h: Change the error codes again.
authorRichard W.M. Jones <rjones@redhat.com>
Sat, 26 Apr 2014 10:50:33 +0000 (11:50 +0100)
committerRichard W.M. Jones <rjones@redhat.com>
Sat, 26 Apr 2014 10:50:33 +0000 (11:50 +0100)
No functional change (although it changes the ABI).

miniexpect.h

index 31b7269..9a374b7 100644 (file)
@@ -67,9 +67,9 @@ typedef struct mexp_regexp mexp_regexp;
 
 enum mexp_status {
   MEXP_EOF        = 0,
-  MEXP_TIMEOUT    = -1,
-  MEXP_ERROR      = -2,
-  MEXP_PCRE_ERROR = -3,
+  MEXP_ERROR      = -1,
+  MEXP_PCRE_ERROR = -2,
+  MEXP_TIMEOUT    = -3,
 };
 
 extern int mexp_expect (mexp_h *h, const mexp_regexp *regexps,