1
0
Fork 0

forgot return statement

Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@2032
This commit is contained in:
Peter Veenstra 2004-10-20 12:27:19 +00:00
parent bced25b890
commit 8dbbd230da
2 changed files with 4 additions and 2 deletions

View file

@ -16,7 +16,7 @@
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
/* $Id: dos_devices.cpp,v 1.6 2004-10-17 14:45:00 qbix79 Exp $ */
/* $Id: dos_devices.cpp,v 1.7 2004-10-20 12:27:19 qbix79 Exp $ */
#include <string.h>
#include "dosbox.h"
@ -106,6 +106,7 @@ DOS_File & DOS_File::operator= (const DOS_File & orig) {
if(orig.name) {
name=new char [strlen(orig.name)];strcpy(name,orig.name);
}
return *this;
}
Bit8u DOS_FindDevice(char * name) {