From: JINMEI Tatuya Date: Thu, 23 May 2013 20:35:26 +0000 (-0700) Subject: [2850] style matter: combined two short lines. X-Git-Tag: bind10-1.2.0beta1-release~418^2~8^2~7 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=c226db710c71f94fe3506a588bcd4566cab5b2dd;p=thirdparty%2Fkea.git [2850] style matter: combined two short lines. --- diff --git a/src/lib/util/memory_segment.h b/src/lib/util/memory_segment.h index da2c5ec8bb..b2050ff0f3 100644 --- a/src/lib/util/memory_segment.h +++ b/src/lib/util/memory_segment.h @@ -325,12 +325,10 @@ private: /// an underscore ('_'). static void validateName(const char* name) { if (!name) { - isc_throw(InvalidParameter, - "NULL is invalid for a name."); + isc_throw(InvalidParameter, "NULL is invalid for a name."); } if (*name == '\0') { - isc_throw(InvalidParameter, - "Empty names are invalid."); + isc_throw(InvalidParameter, "Empty names are invalid."); } else if (*name == '_') { isc_throw(InvalidParameter, "Names beginning with '_' are reserved for "