Skip to content

Commit 9088cd7

Browse files
committed
examples/launch-tee: fix argument types
Fix types for "port_map" and "rlimits". Signed-off-by: Sergio Lopez <[email protected]>
1 parent e9dfe77 commit 9088cd7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

examples/launch-tee.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,12 @@
1919

2020
int main(int argc, char *const argv[])
2121
{
22-
char *const port_map[] =
22+
const char *const port_map[] =
2323
{
2424
"18000:8000",
2525
0
2626
};
27-
char *const rlimits[] =
27+
const char *const rlimits[] =
2828
{
2929
// RLIMIT_NPROC = 6
3030
"6=4096:8192",

0 commit comments

Comments
 (0)