diff options
author | markm <markm@FreeBSD.org> | 2001-12-11 22:27:26 +0000 |
---|---|---|
committer | markm <markm@FreeBSD.org> | 2001-12-11 22:27:26 +0000 |
commit | 1f1707d89210fde12a851f855259c8a08d955764 (patch) | |
tree | f1ef39aa14d70f68f48324b734f938f02faa9243 | |
parent | 496247b54e04866c8cd7f8ea720cef96cc77de62 (diff) | |
download | FreeBSD-src-1f1707d89210fde12a851f855259c8a08d955764.zip FreeBSD-src-1f1707d89210fde12a851f855259c8a08d955764.tar.gz |
Use FBSDID(), WARNS=2 fix.
Mkaefile does not use WARNS=2 beacuse this will be made default.
-rw-r--r-- | usr.bin/which/which.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/usr.bin/which/which.c b/usr.bin/which/which.c index c0435fb..f55871a 100644 --- a/usr.bin/which/which.c +++ b/usr.bin/which/which.c @@ -22,10 +22,12 @@ * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - * - * $FreeBSD$ */ +#include <sys/cdefs.h> + +__FBSDID("$FreeBSD$"); + #include <sys/stat.h> #include <sys/param.h> @@ -132,7 +134,7 @@ print_matches(char *path, char *filename) found = 0; while ((d = strsep(&path, ":")) != NULL) { if (snprintf(candidate, sizeof(candidate), "%s/%s", d, - filename) >= sizeof(candidate)) + filename) >= (int)sizeof(candidate)) continue; if (is_there(candidate)) { found = 1; |