diff options
| author | alex <alex@97f52cf1-0a1b-0410-bd0e-c28be96e8082> | 2007-05-28 10:25:08 +0000 |
|---|---|---|
| committer | alex <alex@97f52cf1-0a1b-0410-bd0e-c28be96e8082> | 2007-05-28 10:25:08 +0000 |
| commit | 43a6a645d75bdba4c5af0370a67f70da83cf7c35 (patch) | |
| tree | 4808394d424f6738845eea5c4c0666e0e91e2149 /src | |
| parent | 8a5cdf2c7989e792e5ff8504de0ca4a3b15a8ddc (diff) | |
| download | zabbix-43a6a645d75bdba4c5af0370a67f70da83cf7c35.tar.gz zabbix-43a6a645d75bdba4c5af0370a67f70da83cf7c35.tar.xz zabbix-43a6a645d75bdba4c5af0370a67f70da83cf7c35.zip | |
- fixed function diff() for floats (Alexei)
git-svn-id: svn://svn.zabbix.com/trunk@4184 97f52cf1-0a1b-0410-bd0e-c28be96e8082
Diffstat (limited to 'src')
| -rw-r--r-- | src/zabbix_server/evalfunc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/zabbix_server/evalfunc.c b/src/zabbix_server/evalfunc.c index 29eef1be..9b79035a 100644 --- a/src/zabbix_server/evalfunc.c +++ b/src/zabbix_server/evalfunc.c @@ -1110,7 +1110,7 @@ int evaluate_function(char *value,DB_ITEM *item,char *function,char *parameter) } else { - strcpy(value,"2"); + strcpy(value,"1"); } break; case ITEM_VALUE_TYPE_UINT64: |
