From bce3aad8851d0c04ead14c3938befc262070ffa8 Mon Sep 17 00:00:00 2001 From: David Lawrence Ramsey Date: Sun, 5 Dec 2004 06:02:39 +0000 Subject: [PATCH] in titlebar(), space should be an int instead of a size_t git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@2162 35c25a1d-7b9e-4130-9fde-d3aeb78583b8 --- src/winio.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/winio.c b/src/winio.c index 5ff803f0..d2b574fd 100644 --- a/src/winio.c +++ b/src/winio.c @@ -2224,7 +2224,7 @@ void statusq_abort(void) void titlebar(const char *path) { - size_t space; + int space; /* The space we have available for display. */ size_t verlen = strlen(VERMSG) + 1; /* The length of the version message. */