changeset 870:dac019dc55f3 stable

imcrop: silence assignment (missing ; at end of statement).
author Carnë Draug <carandraug@octave.org>
date Tue, 18 Feb 2014 22:49:22 +0000
parents 6f961cf68af0
children 70a4d2a10a80
files inst/imcrop.m
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/inst/imcrop.m
+++ b/inst/imcrop.m
@@ -185,7 +185,7 @@
 ## shadows core function to support ND image.  If we have one, use
 ## the first frame only
 function h = nd_imshow (varargin)
-  size (varargin{1})
+  size (varargin{1});
   h = imshow (varargin{1}(:,:,:,1), varargin{2:end});
 endfunction