1
0
Fork 0
mirror of git://git.code.sf.net/p/cdesktopenv/code synced 2025-02-15 04:32:24 +00:00

dtfile: Resolve CID 87308

This commit is contained in:
Peter Howkins 2015-01-15 15:05:45 +00:00
parent f506dd71ac
commit 74afeadda3

View file

@ -66,7 +66,7 @@
#include "SharedMsgs.h"
static char unknownmessage[] = "***Unknown shared message***";
/************************************************************************
*
@ -150,5 +150,8 @@ GetSharedMessage(
return GETMESSAGE(30,21, "File Move Error");
case FILE_LINK_ERROR_TITLE:
return GETMESSAGE(30,22, "File Link Error");
default:
fprintf(stderr, "GetSharedMessage: unknown message %d\n", id);
return unknownmessage;
}
}