Skip to content

Commit 93db123

Browse files
authored
Update memory.c
1 parent 752fdb5 commit 93db123

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

driver/others/memory.c

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -147,8 +147,7 @@ USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
147147
#elif (defined(OS_DARWIN) || defined(OS_SUNOS)) && defined(C_GCC)
148148
#define CONSTRUCTOR __attribute__ ((constructor))
149149
#define DESTRUCTOR __attribute__ ((destructor))
150-
#else
151-
#if __GNUC__ && INIT_PRIORITY && ((GCC_VERSION >= 40300) || (CLANG_VERSION >= 20900))
150+
#elif __GNUC__ && INIT_PRIORITY && ((GCC_VERSION >= 40300) || (CLANG_VERSION >= 20900))
152151
#define CONSTRUCTOR __attribute__ ((constructor(101)))
153152
#define DESTRUCTOR __attribute__ ((destructor(101)))
154153
#elif __GNUC__ && INIT_PRIORITY

0 commit comments

Comments
 (0)