mirror of
git://projects.qi-hardware.com/eda-tools.git
synced 2025-04-21 12:27:27 +03:00
b2/: use -Wextra (and fix places where this caused trouble)
This commit is contained in:
@@ -11,7 +11,7 @@
|
|||||||
|
|
||||||
SHELL = /bin/bash
|
SHELL = /bin/bash
|
||||||
|
|
||||||
CFLAGS = -g -Wall $(shell pkg-config --cflags glib-2.0)
|
CFLAGS = -g -Wall -Wextra $(shell pkg-config --cflags glib-2.0)
|
||||||
SLOPPY = -Wno-unused -Wno-implicit-function-declaration
|
SLOPPY = -Wno-unused -Wno-implicit-function-declaration
|
||||||
OBJS = bom.o boom.o chr.o comp.o db.o dump.o eval.o param.o relop.o \
|
OBJS = bom.o boom.o chr.o comp.o db.o dump.o eval.o param.o relop.o \
|
||||||
subex.o subst.o util.o \
|
subex.o subst.o util.o \
|
||||||
|
|||||||
1
b2/db.c
1
b2/db.c
@@ -356,6 +356,7 @@ static gboolean sel_prm_traverse(gpointer key, gpointer value, gpointer data)
|
|||||||
struct part *p = key;
|
struct part *p = key;
|
||||||
struct sel_prm_data *d = data;
|
struct sel_prm_data *d = data;
|
||||||
|
|
||||||
|
(void) value;
|
||||||
if (!params_match(d->param, p->param))
|
if (!params_match(d->param, p->param))
|
||||||
return FALSE;
|
return FALSE;
|
||||||
d->res = realloc(d->res, sizeof(const struct part *)*(d->n_res+1));
|
d->res = realloc(d->res, sizeof(const struct part *)*(d->n_res+1));
|
||||||
|
|||||||
@@ -18,6 +18,7 @@
|
|||||||
|
|
||||||
void dump_name(FILE *file, const struct format *fmt, const struct value *v)
|
void dump_name(FILE *file, const struct format *fmt, const struct value *v)
|
||||||
{
|
{
|
||||||
|
(void) fmt;
|
||||||
fprintf(file, "%s", v->u.s);
|
fprintf(file, "%s", v->u.s);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user