Ticket #1923 (new defect) — at Initial Version

Opened 14 years ago

Last modified 14 years ago

getting-out-assignments-from-some-if-calls

Reported by: vit_r Owned by:
Priority: trivial Milestone:
Component: mc-core Version:
Keywords: Cc:
Blocked By: Blocking:
Branch state: Votes for changeset:

Description

Example

     if ((pid = fork ()) == -1) {

is replaced by

     pid = fork ();
     if (pid == -1) {

Change History

Changed 14 years ago by vit_r

Getting out assignments(X = foo) from some if-calls

Note: See TracTickets for help on using tickets.