pstore: fix one type of return value in pstore
authorChen Gong <gong.chen@linux.intel.com>
Mon, 16 May 2011 17:58:57 +0000 (10:58 -0700)
committerTony Luck <tony.luck@intel.com>
Mon, 16 May 2011 18:04:51 +0000 (11:04 -0700)
the return type of function _read_ in pstore is size_t,
but in the callback function of _read_, the logic doesn't
consider it too much, which means if negative value (assuming
error here) is returned, it will be converted to positive because
of type casting. ssize_t is enough for this function.

Signed-off-by: Chen Gong <gong.chen@linux.intel.com>
Signed-off-by: Tony Luck <tony.luck@intel.com>

No differences found