blob: 9810a53ba03b3b1c52b05b1335977adb303bf7ce (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
--- cli/libtecla/homedir.c.orig 2018-07-11 18:41:32 UTC
+++ cli/libtecla/homedir.c
@@ -146,7 +146,7 @@ HomeDir *_new_HomeDir(void)
* a pathname, increase its length.
*/
pathlen = _pu_pathname_dim();
- if(pathlen > home->buflen)
+ if(pathlen > (unsigned long)(home->buflen))
home->buflen = pathlen;
/*
* Allocate a work buffer.
|