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

- Tried to reduce the number of compiler warnings generated.

- The cross compiler GNUmakefile.os4 variant now also logs all warnings
  and errors to a compiler.log file.


git-svn-id: file:///Users/olsen/Code/migration-svn-zu-git/logical-line-staging/clib2/trunk@15055 87f5fb63-7c3d-0410-a384-fd976d0f7a62
This commit is contained in:
Olaf Barthel
2005-10-27 08:58:41 +00:00
parent 937169c0ba
commit 81958fd44b
37 changed files with 110 additions and 102 deletions

View File

@ -1,5 +1,5 @@
/*
* $Id: stdio_record_locking.c,v 1.13 2005-04-25 15:39:56 obarthel Exp $
* $Id: stdio_record_locking.c,v 1.14 2005-10-27 08:58:41 obarthel Exp $
*
* :ts=4
*
@ -462,7 +462,7 @@ create_file_lock_node(struct fd * fd,struct FileLockNode ** result_ptr)
goto out;
}
strcpy(fln->fln_FileName,fib->fib_FileName);
strcpy((char *)fln->fln_FileName,fib->fib_FileName);
NewList((struct List *)&fln->fln_LockedRegionList);
@ -523,7 +523,7 @@ find_file_lock_node_by_drawer_and_name(
if(status == LOCK_SAME)
{
if(Stricmp(fln->fln_FileName,file_name) == SAME)
if(Stricmp((STRPTR)fln->fln_FileName,file_name) == SAME)
{
error = OK;