From: Kevin Day Date: Mon, 12 Mar 2012 16:23:33 +0000 (-0500) Subject: Update: change return codes enum to start at 131 X-Git-Tag: 0.3.0~80 X-Git-Url: https://git.kevux.org/?a=commitdiff_plain;h=c1acbea74a04d863f4fea93793a1a971de9e5651;p=fll Update: change return codes enum to start at 131 This should makes things sort of compatible with bash shell scripts. Bash limits its return states to 255, so the fss return codes may still not always function.. This at least allows for some sort of compatibility. --- diff --git a/level_0/f_errors/c/errors.h b/level_0/f_errors/c/errors.h index a33c100..c1d42ab 100644 --- a/level_0/f_errors/c/errors.h +++ b/level_0/f_errors/c/errors.h @@ -98,7 +98,7 @@ enum { #endif // _di_f_errors_booleans_ #ifndef _di_f_errors_basic_ - f_none, + f_none = 131, // start at 131 to allow compatibility with the reserved bash return codes (keep in mind fss return codes can be larger than 255). f_dummy, // to only be used as a placeholder f_warn, // warning f_critical,