-
Notifications
You must be signed in to change notification settings - Fork 163
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[x64対応] c4477 の警告を修正 #89
Conversation
sakura_core/util/shell.cpp
Outdated
@@ -607,7 +607,7 @@ BOOL MyWinHelp(HWND hwndCaller, UINT uCommand, DWORD_PTR dwData) | |||
dwData = 1; // �ڎ��y�[�W | |||
|
|||
TCHAR buf[256]; | |||
_stprintf( buf, _T("http://sakura-editor.sourceforge.net/cgi-bin/hid2.cgi?%d"), dwData ); | |||
_stprintf( buf, _T("http://sakura-editor.sourceforge.net/cgi-bin/hid2.cgi?%Id"), dwData ); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
修正の本質ではないのですが、dwData
という変数名が気になりました。
これを機に dwptrData
のような名前に変更するのはどうでしょうか。
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
#93 に登録しました。
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
…arning [x64対応] c4477 の警告を修正
c4477 の警告を修正
参考
https://msdn.microsoft.com/ja-jp/library/tcxf1dw6.aspx