summaryrefslogtreecommitdiff
path: root/benchmarks
diff options
context:
space:
mode:
authorChris Johns <chrisj@rtems.org>2014-09-05 13:43:01 +1000
committerChris Johns <chrisj@rtems.org>2014-09-05 13:43:01 +1000
commitfe684ef291f69d7ac517e0338a2605635ccd6f4c (patch)
tree5ed04413fd33f92e5b1db974b938fc05057ccd74 /benchmarks
parentd1f602eb2752cb9305300622e48df90a883c5ceb (diff)
Clean up warnings.
Diffstat (limited to 'benchmarks')
-rw-r--r--benchmarks/nbench/main.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/benchmarks/nbench/main.c b/benchmarks/nbench/main.c
index 7c094bd..8c5616d 100644
--- a/benchmarks/nbench/main.c
+++ b/benchmarks/nbench/main.c
@@ -1,7 +1,7 @@
/*
* Written by Petri Rokka <petri.rokka@tut.fi> based
* upon numerous RTEMS examples.
- *
+ *
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
* http://www.rtems.com/license/LICENSE.
@@ -63,7 +63,7 @@ int nbench_main(int argc, char **argv);
rtems_task task_nbench(rtems_task_argument arg)
{
- char **args[1] = {"./nbench"};
+ char *args[1] = {"./nbench"};
nbench_main(1, args);
}
@@ -71,7 +71,7 @@ rtems_task Init(rtems_task_argument arg)
{
rtems_status_code sc;
rtems_id task_id_nbench;
- char **args[1] = {"./nbench"};
+ char *args[1] = {"./nbench"};
rtems_interval tickspersec;
/*