Time library, adjustTime()

Thank you for responding!

void adjustTime(long adjustment){
  sysTime += adjustment;
}

)

I suppose Time_t is used to roll over from hour 0 minute 59 to hour 1 minute 00? If i use the function presented above this isn't the case, it just counts up like an int..