diff options
author | Vijay Bellur <vijay@gluster.com> | 2010-01-29 03:26:12 +0000 |
---|---|---|
committer | Anand V. Avati <avati@dev.gluster.com> | 2010-01-29 06:17:33 -0800 |
commit | 902422d4de87b5db099cf084025120cc980fabbd (patch) | |
tree | 4cdc268a07bee9d7a217df944c4aa7caabd17a3b /xlators/performance/write-behind/src/write-behind.c | |
parent | 4462b4a31e7ac3a4394f46d7d3067cc03fd24dee (diff) |
performance/write-behind: Set right an incorrect message displayed in log
Signed-off-by: Vijay Bellur <vijay@gluster.com>
Signed-off-by: Anand V. Avati <avati@dev.gluster.com>
BUG: 579 (write-behind cache-size less than 128KB leads to error)
URL: http://bugs.gluster.com/cgi-bin/bugzilla3/show_bug.cgi?id=579
Diffstat (limited to 'xlators/performance/write-behind/src/write-behind.c')
-rw-r--r-- | xlators/performance/write-behind/src/write-behind.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xlators/performance/write-behind/src/write-behind.c b/xlators/performance/write-behind/src/write-behind.c index c4edfa73666..d602eb50af7 100644 --- a/xlators/performance/write-behind/src/write-behind.c +++ b/xlators/performance/write-behind/src/write-behind.c @@ -2504,7 +2504,7 @@ init (xlator_t *this) gf_log (this->name, GF_LOG_ERROR, "aggregate-size(%"PRIu64") cannot be more than " "window-size" - "(%"PRIu64")", conf->window_size, conf->aggregate_size); + "(%"PRIu64")", conf->aggregate_size, conf->window_size); FREE (conf); return -1; } |