Skip to content
Snippets Groups Projects
Commit 5d4bc9d7 authored by Thomas Schlichter's avatar Thomas Schlichter :flag_de:
Browse files

fix compilation of telnetsrv_proccmd.c with deadline scheduler disabled

parent 986bd80c
No related branches found
No related tags found
No related merge requests found
......@@ -121,9 +121,11 @@ char toksep[2];
case SCHED_RR:
lptr+=sprintf(lptr,"%s ","rt: rr");
break;
#ifdef SCHED_DEADLINE
case SCHED_DEADLINE:
lptr+=sprintf(lptr,"%s ","rt: deadline");
break;
#endif
default:
lptr+=sprintf(lptr,"%s ","????");
break;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment