Programmer errors should not be mixed with runtime errors. If there's a prorammer error, then there's nothing we can do about it during runtime, and the program should fail as early and loud as possible.
Signed-off-by: Tuomas Jorma Juhani Räsänen <[email protected]> --- nbd-server.c | 1 - 1 file changed, 1 deletion(-) diff --git a/nbd-server.c b/nbd-server.c index e45c0ca..217a07a 100644 --- a/nbd-server.c +++ b/nbd-server.c @@ -616,7 +616,6 @@ typedef enum { CFILE_KEY_MISSING, /**< A (required) key is missing */ CFILE_VALUE_INVALID, /**< A value is syntactically invalid */ CFILE_VALUE_UNSUPPORTED,/**< A value is not supported in this build */ - CFILE_PROGERR, /**< Programmer error */ CFILE_NO_EXPORTS, /**< A config file was specified that does not define any exports */ CFILE_INCORRECT_PORT, /**< The reserved port was specified for an -- 1.7.10.4 ------------------------------------------------------------------------------ Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS, MVC, Windows 8 Apps, JavaScript and much more. Keep your skills current with LearnDevNow - 3,200 step-by-step video tutorials by Microsoft MVPs and experts. ON SALE this month only -- learn more at: http://p.sf.net/sfu/learnmore_123012 _______________________________________________ Nbd-general mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/nbd-general
