diff --git a/tests/sample/process_monitor.c b/tests/sample/process_monitor.c index c9f64b8452..26abb7dfdc 100644 --- a/tests/sample/process_monitor.c +++ b/tests/sample/process_monitor.c @@ -67,7 +67,7 @@ bounded_memcpy(uint8_t* destination, const uint8_t* source, uint32_t destination { // Prevail verifier doesn't correctly compute the number of iterations in the loop. // Unroll the loop to avoid the verifier error. -// Issue: # +// Issue: https://github.com/vbpf/ebpf-verifier/issues/441 #pragma unroll for (uint32_t index = 0; index < BOUNDED_MEMCPY_LIMIT; index++) { if (index < destination_size && index < source_size) {