summaryrefslogtreecommitdiff
path: root/src/w32bdf.c
diff options
context:
space:
mode:
authorJan Djärv <jan.h.d@swipnet.se>2003-11-16 16:17:09 +0000
committerJan Djärv <jan.h.d@swipnet.se>2003-11-16 16:17:09 +0000
commitb328dc8d4ef1c715f7b0d1faffaaa11d1c8d12b0 (patch)
tree6599c381265d3655206e662f0957bb7d6208a614 /src/w32bdf.c
parent05b922b85feb74e0a9951fb142c3ce109ba978e3 (diff)
downloademacs-b328dc8d4ef1c715f7b0d1faffaaa11d1c8d12b0.tar.gz
Remove period at end of error message.
Diffstat (limited to 'src/w32bdf.c')
-rw-r--r--src/w32bdf.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/w32bdf.c b/src/w32bdf.c
index 567030a23e8..04739b8e846 100644
--- a/src/w32bdf.c
+++ b/src/w32bdf.c
@@ -247,7 +247,7 @@ w32_init_bdf_font(char *filename)
hbdf_bmp_heap = HeapCreate(0, BDF_BITMAP_HEAP_INITIAL_SIZE, 0);
if (!hbdf_cp_heap || !hbdf_bmp_heap)
- error("Fail to create heap for BDF.");
+ error("Fail to create heap for BDF");
hfile = CreateFile(filename, GENERIC_READ, FILE_SHARE_READ, NULL,
OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, NULL);
@@ -257,13 +257,13 @@ w32_init_bdf_font(char *filename)
(fileinfo.nFileSizeLow > BDF_FILE_SIZE_MAX))
{
CloseHandle(hfile);
- error("Fail to open BDF file.");
+ error("Fail to open BDF file");
}
hfilemap = CreateFileMapping(hfile, NULL, PAGE_READONLY, 0, 0, NULL);
if (hfilemap == INVALID_HANDLE_VALUE)
{
CloseHandle(hfile);
- error("Can't map font.");
+ error("Can't map font");
}
font = MapViewOfFile(hfilemap, FILE_MAP_READ, 0, 0, 0);
@@ -272,7 +272,7 @@ w32_init_bdf_font(char *filename)
{
CloseHandle(hfile);
CloseHandle(hfilemap);
- error("Can't view font.");
+ error("Can't view font");
}
bdffontp = (bdffont *) xmalloc(sizeof(bdffont));