Arduino V1 vs Arduino 22 SoftwareSerial.write problem

I have written an x10 sketch (serial communication over power lines) that has to send a 0x00 over a serial connection.

In Ver 22 I used the line - X10.print(0x00,BYTE); and that worked fine

In Ver 1.0 I changed it to - X10.write(0x00); and that did not compile and reported the error
74: error: call of overloaded 'write(int)' is ambiguous

Now I'm lost !! any ideas please.

Paul

X10.write((byte)0x00);

Thank you very much for that - it now works.

Where did you find that small bit of info ?

Where did you find that small bit of info ?

It's only been discussed on the forum about 200 times this month.

I also cheated and looked at the release notes and the source code.