Skip to content

Commit

Permalink
ost.c: fix compile warning for uninitialized variable
Browse files Browse the repository at this point in the history
  • Loading branch information
ofaaland committed Mar 28, 2016
1 parent 637dd14 commit adc9f65
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion liblmt/ost.c
Expand Up @@ -96,7 +96,7 @@ _get_oststring_v2 (pctx_t ctx, char *name, char *s, int len)
uint64_t filesfree, filestotal;
uint64_t kbytesfree, kbytestotal;
uint64_t read_bytes, write_bytes;
uint64_t iops, num_exports;
uint64_t iops=0, num_exports;
uint64_t lock_count, grant_rate, cancel_rate;
uint64_t connect, reconnect;
hash_t stats_hash = NULL;
Expand Down

0 comments on commit adc9f65

Please sign in to comment.