I'm using these two packages
\usepackage{graphicx,pifont}% http://ctan.org/pkg/{graphicx,pifont}
\let\oldding\ding% Store old \ding in \oldding
\renewcommand{\ding}[2][1]{\scalebox{#1}{\oldding{#2}}}% Scale \oldding via optional argument
this line works well
\ding[0.5]{111}
However when I use in list items it breaks the code and I get an error
\begin{itemize}[label=\ding[0.5]{111}]
...
\end{itemize}