]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[2836] style fix: unify two short lines
authorJINMEI Tatuya <jinmei@isc.org>
Wed, 15 May 2013 17:30:03 +0000 (10:30 -0700)
committerJINMEI Tatuya <jinmei@isc.org>
Wed, 15 May 2013 17:30:03 +0000 (10:30 -0700)
src/lib/datasrc/memory/zone_data_loader.cc

index ed83a8e5c0bdf49e0190794362f10ed18122b563..e796dd4fcd003ed6adcd4c1609bbb4a6e5f83bbc 100644 (file)
@@ -185,8 +185,7 @@ loadZoneDataInternal(util::MemorySegment& mem_sgmt,
     while (true) { // Try as long as it takes to load and grow the segment
         bool created = false;
         try {
-            SegmentObjectHolder<ZoneData, RRClass> holder(
-                                                          mem_sgmt, rrclass);
+            SegmentObjectHolder<ZoneData, RRClass> holder(mem_sgmt, rrclass);
             holder.set(ZoneData::create(mem_sgmt, zone_name));
 
             // Nothing from this point on should throw MemorySegmentGrown.