ERROR: avrdude: verification error, first mismatch at byte 0x0219

I get this error while trying to upload a code on my arduino uno. Does anybody know what to do?

avrdude: verification error, first mismatch at byte 0x0219
0x10 != 0x96
avrdude: verification error; content mismatch
avrdude: verification error; content mismatch

THE CODE I AM TRYING TO UPLOAD:

#include <IRremote.h>

int RECV_PIN = 11;

IRrecv irrecv(RECV_PIN);

decode_results results;

void setup()
{
Serial.begin(9600);
irrecv.enableIRIn();
}

void loop() {
if (irrecv.decode(&results)) {
Serial.println(String(results.value, HEX));
irrecv.resume();
}
}