summaryrefslogtreecommitdiffstats
path: root/tools/cpu/nios2/memory.c
diff options
context:
space:
mode:
Diffstat (limited to 'tools/cpu/nios2/memory.c')
-rw-r--r--tools/cpu/nios2/memory.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/cpu/nios2/memory.c b/tools/cpu/nios2/memory.c
index 0c35953354..c697e15430 100644
--- a/tools/cpu/nios2/memory.c
+++ b/tools/cpu/nios2/memory.c
@@ -72,14 +72,14 @@ memory_desc *find_memory(device_desc *devices)
{
tmd->dev = dd;
- if(memory == NULL)
+ if(memory == NULL)
{
tmd->next = NULL;
memory = tmd;
}
else
{
- if(tmd->size > memory->size)
+ if(tmd->size > memory->size)
{
tmd->next = memory;
memory = tmd;
@@ -101,4 +101,4 @@ memory_desc *find_memory(device_desc *devices)
return memory;
}
-
+