summaryrefslogtreecommitdiffhomepage
path: root/src/perk.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/perk.c')
-rw-r--r--src/perk.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/perk.c b/src/perk.c
index 82a3235..22d42a9 100644
--- a/src/perk.c
+++ b/src/perk.c
@@ -67,7 +67,7 @@ static int perk_exit(struct pe_driver_ctx * dctx, int nerrors)
return nerrors ? 2 : 0;
}
-int perk_main(int argc, const char ** argv, const char ** envp)
+int perk_main(int argc, char ** argv, char ** envp)
{
int ret;
struct pe_driver_ctx * dctx;
@@ -94,7 +94,7 @@ int perk_main(int argc, const char ** argv, const char ** envp)
#ifndef PERK_IN_A_BOX
-int main(int argc, const char ** argv, const char ** envp)
+int main(int argc, char ** argv, char ** envp)
{
return perk_main(argc,argv,envp);
}