Skip to content

Commit

Permalink
Add missing parentheses in macro definition
Browse files Browse the repository at this point in the history
Signed-off-by: Keith W. Campbell <keithc@ca.ibm.com>
  • Loading branch information
keithc-ca committed Sep 3, 2020
1 parent 4cf5d2b commit acc04ee
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions include_core/thread_api.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*******************************************************************************
* Copyright (c) 1991, 2019 IBM Corp. and others
* Copyright (c) 1991, 2020 IBM Corp. and others
*
* This program and the accompanying materials are made available under
* the terms of the Eclipse Public License 2.0 which accompanies this
Expand Down Expand Up @@ -49,7 +49,7 @@ extern "C" {
#define J9THREAD_RWMUTEX_WOULDBLOCK -1

/* Define conversions for units of time used in thrprof.c */
#define SEC_TO_NANO_CONVERSION_CONSTANT 1000 * 1000 * 1000
#define SEC_TO_NANO_CONVERSION_CONSTANT (1000 * 1000 * 1000)
#define MICRO_TO_NANO_CONVERSION_CONSTANT 1000
#define GET_PROCESS_TIMES_IN_NANO 100

Expand Down Expand Up @@ -1440,4 +1440,3 @@ struct J9ThreadLibrary;
#endif

#endif /* thread_api_h */

0 comments on commit acc04ee

Please sign in to comment.