Changes between Initial Version and Version 1 of Ticket #1844


Ignore:
Timestamp:
11/26/09 11:18:01 (14 years ago)
Author:
slavazanko
Comment:

Please, don't use constructions like:

if (fd = fopen (block_file, "w"))

use instread:

fd = fopen (block_file, "w");
if (fd)

this much better and simplest to understood.

Legend:

Unmodified
Added
Removed
Modified