mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-01-26 23:23:33 +00:00
Bug 352647 String literal converted to char* in formal argument name, in assignment, and in call
r=bienvenu sr=bienvenu bustage fix, missed consumer
This commit is contained in:
parent
664b6df306
commit
0c6258079e
@ -100,7 +100,7 @@ nsCOMPtr<nsIStringBundle> stringBundle = nsnull;
|
||||
|
||||
|
||||
|
||||
static int MimeInlineTextSMIMEStub_parse_line (char *, PRInt32, MimeObject *);
|
||||
static int MimeInlineTextSMIMEStub_parse_line (const char *, PRInt32, MimeObject *);
|
||||
static int MimeInlineTextSMIMEStub_parse_eof (MimeObject *, PRBool);
|
||||
static int MimeInlineTextSMIMEStub_parse_begin (MimeObject *obj);
|
||||
|
||||
@ -175,7 +175,7 @@ MimeInlineTextSMIMEStub_parse_begin(MimeObject *obj)
|
||||
}
|
||||
|
||||
static int
|
||||
MimeInlineTextSMIMEStub_parse_line(char *line, PRInt32 length, MimeObject *obj)
|
||||
MimeInlineTextSMIMEStub_parse_line(const char *line, PRInt32 length, MimeObject *obj)
|
||||
{
|
||||
/*
|
||||
* This routine gets fed each line of data, one at a time. We just buffer
|
||||
|
Loading…
x
Reference in New Issue
Block a user