1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00

Bug fix setting the variable.

This commit is contained in:
Alain Magloire 2002-12-17 18:57:21 +00:00
parent e1950ef13f
commit 81cf0f7908

View file

@ -226,8 +226,8 @@ public class Register extends CObject implements ICDIRegister, ICDIValue {
/** /**
* @see org.eclipse.cdt.debug.core.cdi.model.ICDIVariable#setFormat() * @see org.eclipse.cdt.debug.core.cdi.model.ICDIVariable#setFormat()
*/ */
public void setFormat(int format) throws CDIException { public void setFormat(int fmt) throws CDIException {
format = Format.toMIFormat(format); format = Format.toMIFormat(fmt);
} }
/** /**