I got warning vlog 2240 saying "Treating stand-alone use of function 'convert2string' as an implicit VOID cast"

In reply to marathuteja:

The function convert2string() returns a string value. You get this warning when you call a function and ignore the return value. You probably want to call print() instead.