Changeset 1826

Show
Ignore:
Timestamp:
01/15/08 10:20:28 (1 year ago)
Author:
gboyst
Message:

fixed call to status constructor for eclipse 3.2

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/libselinuxjava-plugin/src/com/tresys/framework/compiler/linkage/libselinuxjava_plugin.java

    r1780 r1826  
    123123                        catch (UnsatisfiedLinkError ule) 
    124124                        { 
    125                                 Status status = new Status (Status.ERROR, getUniqueIdentifier (), "Unable to load lib: " + aLibs[i], ule); 
     125                                Status status = new Status (Status.ERROR, getUniqueIdentifier (), 12, "Unable to load lib: " + aLibs[i], ule); 
    126126                                getLog ().log (status); 
    127127                        } 
    128128                        catch (IOException ioe) 
    129129                        { 
    130                                 Status status = new Status (Status.ERROR, getUniqueIdentifier (), "Unable to load lib: " + aLibs[i], ioe); 
     130                                Status status = new Status (Status.ERROR, getUniqueIdentifier (), 13, "Unable to load lib: " + aLibs[i], ioe); 
    131131                                getLog ().log (status); 
    132132                        }