Frédéric Delanoy : oleview: Constify a character string.
Module: wine Branch: master Commit: 7bdcd40c08c56906eab7a25d97bb090c0e64b523 URL: http://source.winehq.org/git/wine.git/?a=commit;h=7bdcd40c08c56906eab7a25d97... Author: Frédéric Delanoy <frederic.delanoy(a)gmail.com> Date: Wed Dec 18 23:14:17 2013 +0100 oleview: Constify a character string. --- programs/oleview/oleview.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/programs/oleview/oleview.c b/programs/oleview/oleview.c index 9ceaa49..3a379b4 100644 --- a/programs/oleview/oleview.c +++ b/programs/oleview/oleview.c @@ -25,7 +25,7 @@ GLOBALS globals; static const WCHAR wszRegEdit[] = { '\\','r','e','g','e','d','i','t','.','e','x','e','\0' }; -static WCHAR wszFormat[] = { '<','o','b','j','e','c','t','\n',' ',' ',' ', +static const WCHAR wszFormat[] = { '<','o','b','j','e','c','t','\n',' ',' ',' ', 'c','l','a','s','s','i','d','=','\"','c','l','s','i','d',':','%','s','\"','\n', '>','\n','<','/','o','b','j','e','c','t','>','\0' };
participants (1)
-
Alexandre Julliard