1
0
mirror of https://github.com/adtools/clib2.git synced 2025-12-08 14:59:05 +00:00

- Removed a couple more compiler warnings.

git-svn-id: file:///Users/olsen/Code/migration-svn-zu-git/logical-line-staging/clib2/trunk@15140 87f5fb63-7c3d-0410-a384-fd976d0f7a62
This commit is contained in:
Olaf Barthel
2006-09-21 09:24:20 +00:00
parent 3541b011a6
commit 3fe72eaa44
6 changed files with 15 additions and 15 deletions

View File

@ -1,5 +1,5 @@
/*
* $Id: stat_lstat.c,v 1.13 2006-01-08 12:04:24 obarthel Exp $
* $Id: stat_lstat.c,v 1.14 2006-09-21 09:24:20 obarthel Exp $
*
* :ts=4
*
@ -271,7 +271,7 @@ lstat(const char * path_name, struct stat * st)
time(&mtime);
st->st_mode = S_IFLNK | S_IRUSR | S_IXUSR | S_IRGRP | S_IXGRP | S_IROTH | S_IXOTH;
st->st_dev = (ULONG)DeviceProc((STRPTR)path_name);
st->st_dev = (dev_t)DeviceProc((STRPTR)path_name);
st->st_size = link_length;
st->st_mtime = mtime;
st->st_atime = mtime;