Skip to content

Commit

Permalink
Fix string literal conversion warnings in kca_offsets_generator
Browse files Browse the repository at this point in the history
Fix string literal conversion warnings in kca_offsets_generator

Signed-off-by: Dylan Tuttle <[email protected]>
  • Loading branch information
dylanjtuttle committed Nov 27, 2023
1 parent 19546b9 commit b78de64
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions runtime/compiler/ras/kca_offsets_generator.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,8 @@
#include <stdio.h>


char *
J9::Options::kcaOffsets(char *option, void *, TR::OptionTable *entry)
const char *
J9::Options::kcaOffsets(const char *option, void *, TR::OptionTable *entry)
{
char szFileName[40];
char szCMPRSS[8];
Expand Down

0 comments on commit b78de64

Please sign in to comment.