aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/misc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/misc.c b/src/misc.c
index adb0a455..fab3a922 100644
--- a/src/misc.c
+++ b/src/misc.c
@@ -509,7 +509,7 @@ const void *_ssh_list_pop_head(struct ssh_list *list){
*/
char *ssh_dirname (const char *path) {
char *new = NULL;
- unsigned int len;
+ size_t len;
if (path == NULL || *path == '\0') {
return strdup(".");
@@ -565,7 +565,7 @@ char *ssh_dirname (const char *path) {
char *ssh_basename (const char *path) {
char *new = NULL;
const char *s;
- unsigned int len;
+ size_t len;
if (path == NULL || *path == '\0') {
return strdup(".");