aboutsummaryrefslogtreecommitdiff
path: root/flx/input_file.c
diff options
context:
space:
mode:
authorBertrand Jacquin <beber@meleeweb.net>2009-05-01 16:50:29 +0200
committerBertrand Jacquin <beber@meleeweb.net>2009-05-01 16:50:29 +0200
commit93bd5027e178073821376364372ce57462170d78 (patch)
treee5884bcfe87c34e80464333141cfc9a3a0ca5053 /flx/input_file.c
parentflx: Fix gcc-4.3 'declared with attribute warn_unused_result' (diff)
downloadflxutils-93bd5027e178073821376364372ce57462170d78.tar.xz
flx: Fix signedness warnings
Diffstat (limited to 'flx/input_file.c')
-rw-r--r--flx/input_file.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/flx/input_file.c b/flx/input_file.c
index ec50c02..01c250a 100644
--- a/flx/input_file.c
+++ b/flx/input_file.c
@@ -132,7 +132,7 @@ t_file_desc *fill_from_signfs_line(char **tab, char **rpath, t_file_desc **desc)
if (rpath) *rpath = p1;
break;
case 8: /* link */
- (*desc)->link = strdup(p1);
+ (*desc)->link = (unsigned char*)strdup(p1);
break;
}
}