Skip to content

Commit b61360a

Browse files
committed
fixup! Generalize ID_malloc to ID_allocate with optional zero-init
1 parent cdd7f3a commit b61360a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ansi-c/expr2c.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1108,7 +1108,7 @@ std::string expr2ct::convert_allocate(
11081108
std::string op0=convert_with_precedence(src.op0(), p0);
11091109

11101110
unsigned p1;
1111-
std::string op1=convert(src.op0(), p1);
1111+
std::string op1=convert_with_precedence(src.op0(), p1);
11121112

11131113
std::string dest="ALLOCATE";
11141114
dest+='(';

0 commit comments

Comments
 (0)