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

- Fixed a typo in the semaphore creation code. Ouch.

git-svn-id: file:///Users/olsen/Code/migration-svn-zu-git/logical-line-staging/clib2/trunk@14928 87f5fb63-7c3d-0410-a384-fd976d0f7a62
This commit is contained in:
Olaf Barthel
2005-04-25 15:39:56 +00:00
parent 90a192134e
commit df89c636db

View File

@ -1,5 +1,5 @@
/*
* $Id: stdio_record_locking.c,v 1.12 2005-04-24 12:19:06 obarthel Exp $
* $Id: stdio_record_locking.c,v 1.13 2005-04-25 15:39:56 obarthel Exp $
*
* :ts=4
*
@ -153,7 +153,7 @@ obtain_file_lock_semaphore(BOOL shared)
fls = AllocSysObjectTags(ASOT_SEMAPHORE,
ASOSEM_Size, sizeof(*fls),
ASOSEM_Name, semaphore_name_copy,
ASOSEM_Public, FALSE; /* we want to add it ourselves */
ASOSEM_Public, FALSE, /* we want to add it ourselves */
ASOSEM_Pri, 1,
TAG_END);
}