From eea78714837a6e356c96f5424e8aa00bf9864c6c Mon Sep 17 00:00:00 2001 From: akisiel Date: Tue, 20 Dec 2011 12:55:52 +0000 Subject: [PATCH] Fix Coverity --- .../AliFemto/AliFemtoModelWeightGenerator.cxx | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/PWG2/FEMTOSCOPY/AliFemto/AliFemtoModelWeightGenerator.cxx b/PWG2/FEMTOSCOPY/AliFemto/AliFemtoModelWeightGenerator.cxx index a8fc0fe..c6a6906 100644 --- a/PWG2/FEMTOSCOPY/AliFemto/AliFemtoModelWeightGenerator.cxx +++ b/PWG2/FEMTOSCOPY/AliFemto/AliFemtoModelWeightGenerator.cxx @@ -47,7 +47,7 @@ AliFemtoModelWeightGenerator::~AliFemtoModelWeightGenerator(){/* no-op */} //_____________________________________________ AliFemtoModelWeightGenerator& AliFemtoModelWeightGenerator::operator=(const AliFemtoModelWeightGenerator &aModel) { - if (this != &c) { + if (this != &aModel) { fPairType = aModel.fPairType; } -- 1.7.1