diff options
author | Tobias Burnus <tobias@codesourcery.com> | 2020-08-03 09:41:24 +0200 |
---|---|---|
committer | Tobias Burnus <tobias@codesourcery.com> | 2020-08-03 09:41:24 +0200 |
commit | 58cfec3a6e756b534b33787e51c52f5fc63b53ab (patch) | |
tree | abf0bb041873752bf9179f3685a6026fa1eca65c /libgfortran/caf | |
parent | b7dd405948d12e005ce4ebe665120fa028e050b4 (diff) | |
download | gcc-58cfec3a6e756b534b33787e51c52f5fc63b53ab.zip gcc-58cfec3a6e756b534b33787e51c52f5fc63b53ab.tar.gz gcc-58cfec3a6e756b534b33787e51c52f5fc63b53ab.tar.bz2 |
libgfortran/caf/single.c: Fix typo.
libgfortran/ChangeLog
* caf/single.c (_gfortran_caf_lock): Fix typo.
Diffstat (limited to 'libgfortran/caf')
-rw-r--r-- | libgfortran/caf/single.c | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/libgfortran/caf/single.c b/libgfortran/caf/single.c index 7bd022d..8c1abbf 100644 --- a/libgfortran/caf/single.c +++ b/libgfortran/caf/single.c @@ -2961,7 +2961,8 @@ _gfortran_caf_event_query (caf_token_t token, size_t index, void _gfortran_caf_lock (caf_token_t token, size_t index, int image_index __attribute__ ((unused)), - int *aquired_lock, int *stat, char *errmsg, size_t errmsg_len) + int *acquired_lock, int *stat, char *errmsg, + size_t errmsg_len) { const char *msg = "Already locked"; bool *lock = &((bool *) MEMTOK (token))[index]; @@ -2969,16 +2970,16 @@ _gfortran_caf_lock (caf_token_t token, size_t index, if (!*lock) { *lock = true; - if (aquired_lock) - *aquired_lock = (int) true; + if (acquired_lock) + *acquired_lock = (int) true; if (stat) *stat = 0; return; } - if (aquired_lock) + if (acquired_lock) { - *aquired_lock = (int) false; + *acquired_lock = (int) false; if (stat) *stat = 0; return; |