This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "IPFire 2.x development tree".
The branch, master has been updated via 841323bc3ecd3ebf3a0c129a8ffd8d407d5c8cdf (commit) from cebf16f471fe55591051d928526e293c7d7e0a23 (commit)
Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below.
- Log ----------------------------------------------------------------- commit 841323bc3ecd3ebf3a0c129a8ffd8d407d5c8cdf Author: Christian Schmidt maniacikarus@ipfire.org Date: Mon Apr 26 19:01:17 2010 +0200
Fixed my syntax error.
-----------------------------------------------------------------------
Summary of changes: src/install+setup/install/main.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-)
Difference in files: diff --git a/src/install+setup/install/main.c b/src/install+setup/install/main.c index 4038f7c..57cfd5a 100644 --- a/src/install+setup/install/main.c +++ b/src/install+setup/install/main.c @@ -302,9 +302,9 @@ int main(int argc, char *argv[]) fprintf(flog, "Disksize = %ld, memory = %ld", disk, memory); /* Calculating Swap-Size dependend of Ram Size */ - if (memory =< 256) + if (memory <= 256) swap_file = 128; - else if (memory =< 1024 && memory > 256) + else if (memory <= 1024 && memory > 256) swap_file = 256; else swap_file = memory / 4;
hooks/post-receive -- IPFire 2.x development tree