Replacing the final expression argument by ... allows the format
string to have multiple arguments.
It also has the advantage of allowing the change to be recognized as
a change in a single statement, thus avoiding adding unneeded braces.
Signed-off-by: Julia Lawall <Julia.Lawall@inria.fr>
ssize_t show(struct device *dev, struct device_attribute *attr, char *buf)
{
<...
-(
return
-- snprintf(BUF, SZ, FORMAT, STR);
-+ sysfs_emit(BUF, FORMAT, STR);
-|
- return
-- snprintf(BUF, SZ, STR);
-+ sysfs_emit(BUF, STR);
-)
+- snprintf(BUF, SZ, FORMAT
++ sysfs_emit(BUF, FORMAT
+ ,...);
...>
}