From df89c636dbdaac6ee12f7a9d3dede80353148ac4 Mon Sep 17 00:00:00 2001 From: Olaf Barthel Date: Mon, 25 Apr 2005 15:39:56 +0000 Subject: [PATCH] - 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 --- library/stdio_record_locking.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/library/stdio_record_locking.c b/library/stdio_record_locking.c index 6011f8d..50675ca 100644 --- a/library/stdio_record_locking.c +++ b/library/stdio_record_locking.c @@ -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); }