aboutsummaryrefslogtreecommitdiff
path: root/tecparse.h
diff options
context:
space:
mode:
authorRobin Haberkorn <robin.haberkorn@googlemail.com>2025-05-03 20:36:25 +0300
committerRobin Haberkorn <robin.haberkorn@googlemail.com>2025-05-03 20:36:25 +0300
commit9c2afb86acd2e28bef1767b7333acfb9666ec86b (patch)
treecfdedb1bd7436675654fb8374bca4e22a5f38e1d /tecparse.h
parent9deaff57e11036f96b93e0ed79b39cac7fcffa04 (diff)
downloadvideoteco-fork-9c2afb86acd2e28bef1767b7333acfb9666ec86b.tar.gz
various data type improvements
* fixes at least <FS>, which has been broken since b5325e00c402ec18034da4b4a4aaaefa87bb1fef. * but probably many other commands as well in the DOS version when working with "very large" documents * now compiles cleanly with -Wsign-compare
Diffstat (limited to 'tecparse.h')
-rw-r--r--tecparse.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/tecparse.h b/tecparse.h
index 8208079..88eb894 100644
--- a/tecparse.h
+++ b/tecparse.h
@@ -300,7 +300,7 @@ struct undo_token {
int cmd_oscmd(struct cmd_token *,int,unsigned long,unsigned long,char *);
int buff_insert_from_buffer_with_undo( struct cmd_token *,
struct buff_header *,unsigned long,struct buff_header *,unsigned long,size_t);
-int buff_delete_with_undo( struct cmd_token *,struct buff_header *,unsigned long,long);
+int buff_delete_with_undo( struct cmd_token *,struct buff_header *,unsigned long,unsigned long);
int buff_insert_with_undo( struct cmd_token *,
struct buff_header *,unsigned long,char *,unsigned long);
int rename_edit_buffer(struct buff_header *,char *,struct cmd_token *);