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:
parent
f506dd71ac
commit
74afeadda3
1 changed files with 4 additions and 1 deletions
|
@ -66,7 +66,7 @@
|
||||||
#include "SharedMsgs.h"
|
#include "SharedMsgs.h"
|
||||||
|
|
||||||
|
|
||||||
|
static char unknownmessage[] = "***Unknown shared message***";
|
||||||
|
|
||||||
/************************************************************************
|
/************************************************************************
|
||||||
*
|
*
|
||||||
|
@ -150,5 +150,8 @@ GetSharedMessage(
|
||||||
return GETMESSAGE(30,21, "File Move Error");
|
return GETMESSAGE(30,21, "File Move Error");
|
||||||
case FILE_LINK_ERROR_TITLE:
|
case FILE_LINK_ERROR_TITLE:
|
||||||
return GETMESSAGE(30,22, "File Link Error");
|
return GETMESSAGE(30,22, "File Link Error");
|
||||||
|
default:
|
||||||
|
fprintf(stderr, "GetSharedMessage: unknown message %d\n", id);
|
||||||
|
return unknownmessage;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue