summaryrefslogtreecommitdiff
path: root/apps/examples/elf
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2013-01-11 16:53:44 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2013-01-11 16:53:44 +0000
commit7272d1e7473fc1ce1d0a29c7287260402ca2420e (patch)
tree46e6b528a6ace37a9ec35f2e4c1d7d3fe8b510f5 /apps/examples/elf
parent8b26f2afdf93273f95e24840b68df485f971f89a (diff)
downloadnuttx-7272d1e7473fc1ce1d0a29c7287260402ca2420e.tar.gz
nuttx-7272d1e7473fc1ce1d0a29c7287260402ca2420e.tar.bz2
nuttx-7272d1e7473fc1ce1d0a29c7287260402ca2420e.zip
Various changes while debugging posix_spawn
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5510 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'apps/examples/elf')
-rw-r--r--apps/examples/elf/tests/hello/hello.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/apps/examples/elf/tests/hello/hello.c b/apps/examples/elf/tests/hello/hello.c
index 6b1d079d8..bc4953e12 100644
--- a/apps/examples/elf/tests/hello/hello.c
+++ b/apps/examples/elf/tests/hello/hello.c
@@ -63,13 +63,13 @@ int main(int argc, char **argv)
{
printf("argv[%d]\t= ", i);
if (argv[i])
- {
- printf("(0x%p) \"%s\"\n", argv[i], argv[i]);
- }
+ {
+ printf("(0x%p) \"%s\"\n", argv[i], argv[i]);
+ }
else
- {
- printf("NULL?\n");
- }
+ {
+ printf("NULL?\n");
+ }
}
printf("argv[%d]\t= 0x%p\n", argc, argv[argc]);