diff options
| author | Tony Finch <fanf@FreeBSD.org> | 2003-01-17 19:10:18 +0000 |
|---|---|---|
| committer | Tony Finch <fanf@FreeBSD.org> | 2003-01-17 19:10:18 +0000 |
| commit | 07fd5f6a9823c6ba773d445286e6f1482074be41 (patch) | |
| tree | b6aaafc09f817b5e6400e8727fe49c1d91a82890 /usr.bin | |
| parent | e948321c7a5f7cbe35642556131e13c5754f80c3 (diff) | |
Notes
Diffstat (limited to 'usr.bin')
| -rw-r--r-- | usr.bin/unifdef/unifdef.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.bin/unifdef/unifdef.c b/usr.bin/unifdef/unifdef.c index c17a1962c514..426ed4952529 100644 --- a/usr.bin/unifdef/unifdef.c +++ b/usr.bin/unifdef/unifdef.c @@ -791,7 +791,7 @@ findsym(const char *str) if (cp == str) return -1; if (symlist) - printf("%.*s\n", cp-str, str); + printf("%.*s\n", (int)(cp-str), str); for (symind = 0; symind < nsyms; ++symind) { if (strlcmp(symname[symind], str, cp-str) == 0) { debug("findsym %s %s", symname[symind], |
