1
0
Fork 0

Added patch 909837 from JAL

Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@1709
This commit is contained in:
Peter Veenstra 2004-03-10 13:35:03 +00:00
parent e9d22fa895
commit 440960c589

View file

@ -16,7 +16,7 @@
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
/* $Id: shell.h,v 1.3 2004-02-18 15:31:13 qbix79 Exp $ */
/* $Id: shell.h,v 1.4 2004-03-10 13:35:03 qbix79 Exp $ */
#ifndef SHELL_H_
#define SHELL_H_
@ -139,7 +139,8 @@ static inline char* ExpandDot(char*args, char* buffer)
buffer[1]=0;
strcat(buffer,args);
return buffer;
}
} else
strcpy (buffer, args);
}
else strcpy(buffer,args);
return buffer;