changeset 6112:05257ee9753d

[project @ 2006-10-27 04:28:33 by jwe]
author jwe
date Fri, 27 Oct 2006 04:28:33 +0000
parents ed81d74118bb
children 2dc8e7f1ee1e
files scripts/ChangeLog scripts/miscellaneous/unpack.m
diffstat 2 files changed, 5 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/scripts/ChangeLog	Fri Oct 27 02:43:24 2006 +0000
+++ b/scripts/ChangeLog	Fri Oct 27 04:28:33 2006 +0000
@@ -1,3 +1,7 @@
+2006-10-27  William Poetra Yoga Hadisoeseno  <williampoetra@gmail.com>
+
+	* miscellaneous/unpack.m: Fix missing comma in strcat call.
+
 2006-10-25  John W. Eaton  <jwe@octave.org>
 
 	* image/image.m: Set x = y = [] when nargin == 0;
--- a/scripts/miscellaneous/unpack.m	Fri Oct 27 02:43:24 2006 +0000
+++ b/scripts/miscellaneous/unpack.m	Fri Oct 27 04:28:33 2006 +0000
@@ -173,7 +173,7 @@
 
   unwind_protect
     cd (directory);
-    [status, output] = system (sprintf (strcat (command " 2>&1"), file));
+    [status, output] = system (sprintf (strcat (command, " 2>&1"), file));
   unwind_protect_cleanup
     cd (origdir);
   end_unwind_protect