From: David Lawrence Ramsey Date: Sun, 5 Dec 2004 06:02:39 +0000 (+0000) Subject: in titlebar(), space should be an int instead of a size_t X-Git-Tag: v1.3.6~238 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=bce3aad8851d0c04ead14c3938befc262070ffa8;p=nano.git 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 --- 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. */