summaryrefslogtreecommitdiffstats
path: root/communication.c
diff options
context:
space:
mode:
authorBart De Schuymer <bdschuym@pandora.be>2005-01-19 21:23:02 +0000
committerBart De Schuymer <bdschuym@pandora.be>2005-01-19 21:23:02 +0000
commit2f7e8d1590a1c46d453648f384a7486e06f0cd21 (patch)
tree6553afbea2c79c9fed17374ec7fff6c0735a72a7 /communication.c
parent6622a01ea3874e189d877c954f791259b8e6a504 (diff)
missing =
Diffstat (limited to 'communication.c')
-rw-r--r--communication.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/communication.c b/communication.c
index 81fca22..1035ae9 100644
--- a/communication.c
+++ b/communication.c
@@ -656,7 +656,7 @@ static int retrieve_from_file(char *filename, struct ebt_replace *repl,
fseek(file, 0, SEEK_END);
if (size != ftell(file)) {
ebt_print_error("File %s has wrong size", filename);
- ret -1;
+ ret = -1;
goto close_file;
}
entries = (char *)malloc(repl->entries_size);