Skip to content

Commit

Permalink
compilation fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
ennorehling committed Mar 3, 2024
1 parent e3675d1 commit 41888ef
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Empty file modified s/build
100644 → 100755
Empty file.
4 changes: 2 additions & 2 deletions src/economy.c
Original file line number Diff line number Diff line change
Expand Up @@ -1537,13 +1537,13 @@ static void expandselling(region * r, econ_request * sellorders, int limit)

norders = arrlen(sellorders);
if (norders > 0) {
int j;
unsigned int j;
for (j = 0; j != norders; j++) {
const econ_request *request = sellorders + j;
unit *u = request->unit;
const luxury_type *search;
const luxury_type *ltype = request->data.trade.ltype;
int n, i, income = 0, products = 0;
int n, i, income = 0;
int multi = r_demand(r, ltype);
attrib *a = a_find(u->attribs, &at_luxuries);
struct trade *t;
Expand Down

0 comments on commit 41888ef

Please sign in to comment.