Ignore:
Timestamp:
Sep 29, 2013, 7:27:11 PM (11 years ago)
Author:
Bruno Cornec
Message:
  • Fix all compilation/link error due to the previous giant merge with 3.1. 3.2 is ready to test
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/3.2/mondo/src/common/libmondo-string.c

    r3191 r3194  
    866866 * @return The severity (1-3).
    867867 */
    868 int severity_of_difference(char *fn, char *out_reason) {
     868int severity_of_difference(char *fn, char **out_reason) {
    869869
    870870    int sev = 3;
     
    971971    }
    972972    if (out_reason) {
    973         strcpy(out_reason, reason);
     973        strcpy(*out_reason, reason);
    974974    }
    975975    mr_free(filename);
Note: See TracChangeset for help on using the changeset viewer.