From 73f9973a2c3e451d77053cfcf5536cb941a2edbb Mon Sep 17 00:00:00 2001 From: nick black Date: Sun, 20 Sep 2020 05:37:54 -0400 Subject: [PATCH] Plane.hh: fix up indentation #1020 --- include/ncpp/Plane.hh | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/include/ncpp/Plane.hh b/include/ncpp/Plane.hh index 3528fe5ec..74e72aaaf 100644 --- a/include/ncpp/Plane.hh +++ b/include/ncpp/Plane.hh @@ -1111,19 +1111,19 @@ namespace ncpp ncplane* create_plane (Plane &n, int rows, int cols, int yoff, NCAlign align, void *opaque) { - ncplane_options nopts = { - yoff, - static_cast(align), - rows, - cols, - opaque, - nullptr, - 0 - }; + ncplane_options nopts = { + yoff, + static_cast(align), + rows, + cols, + opaque, + nullptr, + 0 + }; ncplane *ret = ncplane_create ( - n.plane, - &nopts - ); + n.plane, + &nopts + ); if (ret == nullptr) throw init_error ("Notcurses failed to create an aligned plane");