Talking Clock adjustTime cannot be used as a function

Hi:
Could someone please help me? I am trying to program a clock that speaks out the time. I have adustTime function in my code so I can change the time on the clock when I press a button. I don't know how to define the function for the adjustTime. I assume that it is included in one of the libraries, and I did find it in my time library, but it says that it cannot be used as a function. I am really confused because it works in the hour but does not work in the minute

if (digitalRead(adjHour) == LOW) { //Setup of hours
ultiHour = -1;
adjustTime(3600);
delay(200);
}

if (digitalRead(adjMinute) == LOW) { //Setup of Minutes
ultiMinute = -1;
adjustTime(60);
delay(200);
}

TalkingClock_English_.ino (3.28 KB)

The error in your post's subject line is because you define a variable on line 13 called adjustTime. You can't have a function with the same name.

I think I'd just delete line 13 because you don't seem to use this variable anywhere in your sketch.