1
0
Fork 0
forked from len0rd/rockbox

nwztools: small cleanups

Change-Id: I4fde020ca0556a84d051f9b5e46f49ee1241266e
This commit is contained in:
Amaury Pouly 2017-04-25 11:21:54 +10:00
parent 0ca6650389
commit 15e66a5b19
2 changed files with 4 additions and 4 deletions

View file

@ -3,9 +3,9 @@ CC=gcc
CXX=g++
LD=g++
PROFILE=
CFLAGS=-g $(PROFILE) -std=c99 -Wall $(DEFINES) `xml2-config --cflags`
CXXFLAGS=-g $(PROFILE) -Wall $(DEFINES) `xml2-config --cflags`
LDFLAGS=$(PROFILE) `xml2-config --libs`
CFLAGS=-g $(PROFILE) -std=c99 -Wall $(DEFINES)
CXXFLAGS=-g $(PROFILE) -Wall $(DEFINES)
LDFLAGS=$(PROFILE)
BINS=nvptool
all: $(BINS)

View file

@ -616,7 +616,7 @@ int do_extract(const char *output, int argc, char **argv)
continue;
}
/* relocate the zoneinfo pointer */
void *Zone = elf_reloc_addr32_ptr(zoneinfo_ptr);;
void *Zone = elf_reloc_addr32_ptr(zoneinfo_ptr);
if(Zone == nullptr)
{
printf(" %s\n", name);