Skip to content

Commit 1a91892

Browse files
committed
Fix test 82/04: minor fix
1 parent b46dc0f commit 1a91892

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

tests/regression/82-widening_gas/04-side_simple_update.c

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,10 @@ void *thread(void *arg) {
1818
pthread_mutex_lock(&A);
1919
b = 2;
2020
c = 2;
21-
c = 3;
2221
pthread_mutex_unlock(&A);
2322

2423
pthread_mutex_lock(&A);
25-
c = 4;
24+
c = 3;
2625
pthread_mutex_unlock(&A);
2726
return NULL;
2827
}

0 commit comments

Comments
 (0)