Fixed minor bug in setConn.m

Should be single quote around strings
This commit is contained in:
Chris Teubert
2015-03-28 15:54:06 -07:00
parent ea2ae58c76
commit 250c98a78c

View File

@@ -29,7 +29,7 @@ function status = setConn( recvPort, IP, port )
%% Handle Input %% Handle Input
% Optional parameters % Optional parameters
if ~exist('IP','var'), IP = "127.0.0.1"; end if ~exist('IP','var'), IP = '127.0.0.1'; end
if ~exist('port','var'), port = 49009; end if ~exist('port','var'), port = 49009; end
% Check format of input-TODO % Check format of input-TODO