Skip to content

Commit

Permalink
Remove leftover printf from last commit
Browse files Browse the repository at this point in the history
  • Loading branch information
TMRh20 committed Jan 6, 2015
1 parent 506239c commit 1b0a701
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion RF24Network.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -333,7 +333,7 @@ bool RF24Network::appendFragmentToFrame(RF24NetworkFrame frame) {
for (std::map<std::pair<uint16_t, uint16_t>, RF24NetworkFrame>::iterator it=frameFragmentsCache.end(); it!=frameFragmentsCache.begin(); it--){
if(it->first.second == lastAddress){
frameFragmentsCache.erase(it);
printf("erased %d from 0%o\n",it->first.first,it->first.second);
//printf("erased %d from 0%o\n",it->first.first,it->first.second);
break;
}
lastAddress = it->first.second;
Expand Down

0 comments on commit 1b0a701

Please sign in to comment.