Skip to content

Commit

Permalink
forgot to make a literal by the the passed in param
Browse files Browse the repository at this point in the history
  • Loading branch information
NSoiffer committed Jun 15, 2022
1 parent 639496e commit 9a9c4b5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion c-example/test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
#include <stdio.h>

bool singleTest(const char* mathml, bool doPrint) {
const char* returnedMathML = SetMathML("<math><mo>(</mo><mfrac linethickness='0'><mi>m</mi><mi>n</mi></mfrac><mo>)</mo></math>");
const char* returnedMathML = SetMathML(mathml);
if (returnedMathML == "") {
const char* message = GetError();
printf("Illegal MathML. Message is: %s\n", message);
Expand Down

0 comments on commit 9a9c4b5

Please sign in to comment.