summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/libw32c.cc
diff options
context:
space:
mode:
authorAdam Borowski <kilobyte@angband.pl>2011-01-11 02:29:29 +0100
committerAdam Borowski <kilobyte@angband.pl>2011-01-11 02:44:26 +0100
commitab77b3191807d995fbf6e3dbd41481d713022942 (patch)
treef2561f7e95c3d21f0b4ab47337cd72c85db5eaf4 /crawl-ref/source/libw32c.cc
parent78595a95c0f61082cab144f78dc4ddd86502acc3 (diff)
downloadcrawl-ref-ab77b3191807d995fbf6e3dbd41481d713022942.tar.gz
crawl-ref-ab77b3191807d995fbf6e3dbd41481d713022942.zip
Give all ASSERT(false) proper messages.
Diffstat (limited to 'crawl-ref/source/libw32c.cc')
-rw-r--r--crawl-ref/source/libw32c.cc3
1 files changed, 1 insertions, 2 deletions
diff --git a/crawl-ref/source/libw32c.cc b/crawl-ref/source/libw32c.cc
index 678e36e7b0..7a07e27c89 100644
--- a/crawl-ref/source/libw32c.cc
+++ b/crawl-ref/source/libw32c.cc
@@ -1065,8 +1065,7 @@ int closedir(DIR* d)
int ftruncate(int fp, int size)
{
- ASSERT(false); // unimplemented
- return 0;
+ die("unimplemented");
}
#endif /* #ifdef TARGET_COMPILER_VC */