Virtual wire, changing the receive pin and transmit pin

I am using the virtual wire library to send data from one arduino to another. The receiving unit is also using an ethernet shield with an SD card.

The Virtual library sets the pin to receive data on pin13 by default. From what i am reading i can change this but I'm not sure how. In looking at the code below, i thought the place to make the change was on the last line but that is not working. Am i in the right place or do i need to find where this is assigned to pin11?

/// Set the digital IO pin to be for receive data.
    /// This pin will only be accessed if
    /// the receiver is enabled
    /// \param[in] pin The Arduino pin number for receiving data. Defaults to 11.
    extern void vw_set_rx_pin(uint8_t pin);

never mind, i figured it out. :wink:

Aww man, saying "nevermind, I figured it out" without telling the solution to a problem should be criminalized!

For anyone else looking for an answer, take a look at the examples that come with the library. They do a definition to the desired pin#.