Skip to content

Commit

Permalink
[OpenMP][NFC] Actually use a string in the error message
Browse files Browse the repository at this point in the history
  • Loading branch information
jdoerfert committed Dec 6, 2023
1 parent 2ba9720 commit 62b11e1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion openmp/libomptarget/src/PluginManager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ Error PluginAdaptorTy::init() {
return createStringError(inconvertibleErrorCode(), \
"Invalid plugin as necessary interface function " \
"(%s) was not found.\n", \
NAME); \
std::string(#NAME).c_str()); \
}

#include "Shared/PluginAPI.inc"
Expand Down

0 comments on commit 62b11e1

Please sign in to comment.