Skip to content

Commit

Permalink
net/tftpdaemon: UpdateStatus() is not const any more
Browse files Browse the repository at this point in the history
See: #381
  • Loading branch information
rsta2 committed Jun 20, 2023
1 parent a754640 commit 96b51b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/circle/net/tftpdaemon.h
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ class CTFTPDaemon : public CTask
virtual int FileRead (void *pBuffer, unsigned nCount) = 0;
virtual int FileWrite (const void *pBuffer, unsigned nCount) = 0;

virtual void UpdateStatus (TStatus Status, const char *pFileName) const {}
virtual void UpdateStatus (TStatus Status, const char *pFileName) {}

private:
boolean DoRead (const char *pFileName);
Expand Down

0 comments on commit 96b51b3

Please sign in to comment.