Commit a1ceb761 by Alan Mishchenko

Making changes suggested by Mark Jarvin.

parent eacfad76
CC := gcc CC := gcc
CXX := g++ CXX := g++
LD := g++ LD := g++
CP := cp
PROG := abc PROG := abc
...@@ -40,7 +39,7 @@ OPTFLAGS := -g -O #-DABC_NAMESPACE=xxx ...@@ -40,7 +39,7 @@ OPTFLAGS := -g -O #-DABC_NAMESPACE=xxx
CFLAGS += -Wall -Wno-unused-function $(OPTFLAGS) $(ARCHFLAGS) -I$(PWD)/src CFLAGS += -Wall -Wno-unused-function $(OPTFLAGS) $(ARCHFLAGS) -I$(PWD)/src
#ifeq ($(shell $(CC) -dumpversion | awk '{FS="."; print ($$1>=4 && $$2>=6)}'),1) #ifeq ($(shell $(CC) -dumpversion | awk '{FS="."; print ($$1>=4 && $$2>=6)}'),1)
# Set -Wno-unused-bug-set-variable for GCC 4.6.0 and greater only # Set -Wno-unused-but-set-variable for GCC 4.6.0 and greater only
CFLAGS += -Wno-unused-but-set-variable CFLAGS += -Wno-unused-but-set-variable
#endif #endif
......
...@@ -1558,7 +1558,7 @@ ddSymmGroupMoveBackward( ...@@ -1558,7 +1558,7 @@ ddSymmGroupMoveBackward(
int x, int x,
int y) int y)
{ {
int size; int size = -1;
int i,j; int i,j;
int xtop,xbot,xsize,ytop,ybot,ysize,newxtop; int xtop,xbot,xsize,ytop,ybot,ysize,newxtop;
......
...@@ -1590,7 +1590,7 @@ zdd_group_move_backward( ...@@ -1590,7 +1590,7 @@ zdd_group_move_backward(
int x, int x,
int y) int y)
{ {
int size; int size = -1;
int i, temp, gxtop, gxbot, gybot, yprev; int i, temp, gxtop, gxbot, gybot, yprev;
#ifdef DD_DEBUG #ifdef DD_DEBUG
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment