summaryrefslogtreecommitdiff
path: root/src/e.c
diff options
context:
space:
mode:
authorMichael Jennings <mej@kainx.org>2008-12-17 06:04:15 +0000
committerMichael Jennings <mej@kainx.org>2008-12-17 06:04:15 +0000
commit9a7cd3adace634401cbb54c3341d0d1a1acf0319 (patch)
tree9e49eae824f9b0024a3aef7d5b24e9e8afe4ce48 /src/e.c
parent331e2218358d09192df467391091e0183bd945b0 (diff)
downloadeterm-9a7cd3adace634401cbb54c3341d0d1a1acf0319.tar.gz
Tue Dec 16 22:03:54 2008 Michael Jennings (mej)
Fix compile errors related to the removal of unnecessary typecasting macros. ---------------------------------------------------------------------- SVN revision: 38171
Diffstat (limited to 'src/e.c')
-rw-r--r--src/e.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/e.c b/src/e.c
index 30e48ee..405fafb 100644
--- a/src/e.c
+++ b/src/e.c
@@ -104,8 +104,8 @@ enl_ipc_get_win(void)
}
/* Make sure the version string is within the acceptable range. */
- if (SPIF_CMP_IS_LESS(spiftool_version_compare(SPIF_CAST(charptr) str, SPIF_CAST(charptr) "0.16.4"))
- || SPIF_CMP_IS_GREATER(spiftool_version_compare(SPIF_CAST(charptr) str, SPIF_CAST(charptr) "0.16.999"))) {
+ if (SPIF_CMP_IS_LESS(spiftool_version_compare((spif_charptr_t) str, (spif_charptr_t) "0.16.4"))
+ || SPIF_CMP_IS_GREATER(spiftool_version_compare((spif_charptr_t) str, (spif_charptr_t) "0.16.999"))) {
D_ENL((" -> IPC version string \"%s\" out of range. I'll have to ignore it.\n"));
ipc_win = None;
}