No, that would be wrong.
The output of reorgchk shows something like F1, F2, and so on. The position of the '*' corresponds to the parameter being represented, i.e. '*--' means that parameter F1 is off while F2 and F3 are fine. Likewise, '-*-' means that only condition F2 is not met.
Now, why would it be wrong to always reorg if there is a '*' somewhere? The thing is that you can only have 1 cluster index for a table. If the rows are ordered by column A, you cannot have an ordering also for column B (except for rare cases and column correlations/functional dependencies). So if you reorg the table to cluster according to an index on column A, you will get '*' on the clustering factor for an index on column B. Thus, you should understand what each of the indicators shown by reorgchk is telling you and whether it matters for you.